Skip to content

Commit

Permalink
fixed python 3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Feb 15, 2019
1 parent d48b6d9 commit 36a07b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mt940/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
c = Code list value
n = Numeric
'''
from __future__ import print_function
import re
import pprint
import logging
Expand All @@ -33,7 +34,7 @@
import enum
except ImportError: # pragma: no cover
import sys
print >> sys.stderr, 'MT940 requires the `enum34` package'
print('MT940 requires the `enum34` package', file=sys.stderr)

class enum(object):
@staticmethod
Expand Down

0 comments on commit 36a07b6

Please sign in to comment.