aboutsummaryrefslogtreecommitdiff
path: root/PyQRNative.py
diff options
context:
space:
mode:
Diffstat (limited to 'PyQRNative.py')
-rw-r--r--PyQRNative.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/PyQRNative.py b/PyQRNative.py
index 2d3dd489..929e8e49 100644
--- a/PyQRNative.py
+++ b/PyQRNative.py
@@ -278,9 +278,9 @@ class QRCode:
if (buffer.getLengthInBits() > totalDataCount * 8):
raise Exception("code length overflow. ("
- + buffer.getLengthInBits()
+ + str(buffer.getLengthInBits())
+ ">"
- + totalDataCount * 8
+ + str(totalDataCount * 8)
+ ")")
#// end code
bgstack15