diff options
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r-- | Lib/binhex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py index 8cb34d3..a7f906d 100644 --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -144,7 +144,7 @@ class _Rlecoderengine: self.data = '' def write(self, data): - if DEBUG: + if DEBUG: testf.write(data) # XXXX self.data = self.data + data if len(self.data) < REASONABLY_LARGE: |