summaryrefslogtreecommitdiffstats
path: root/Lib/binhex.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r--Lib/binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py
index 5700659..9735f2e 100644
--- a/Lib/binhex.py
+++ b/Lib/binhex.py
@@ -229,7 +229,7 @@ class BinHex:
def close_data(self):
if self.dlen != 0:
- raise Error, 'Incorrect data size, diff='+`self.rlen`
+ raise Error, 'Incorrect data size, diff=%r' % (self.rlen,)
self._writecrc()
self.state = _DID_DATA
@@ -248,7 +248,7 @@ class BinHex:
raise Error, 'Close at the wrong time'
if self.rlen != 0:
raise Error, \
- "Incorrect resource-datasize, diff="+`self.rlen`
+ "Incorrect resource-datasize, diff=%r" % (self.rlen,)
self._writecrc()
self.ofp.close()
self.state = None