summaryrefslogtreecommitdiff
path: root/test/regress/xact_code.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/xact_code.py')
-rw-r--r--test/regress/xact_code.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/regress/xact_code.py b/test/regress/xact_code.py
index 64abb17d..a697e156 100644
--- a/test/regress/xact_code.py
+++ b/test/regress/xact_code.py
@@ -1,4 +1,6 @@
+from __future__ import print_function
+
import ledger
for post in ledger.read_journal('test/regress/xact_code.dat').query('expenses'):
- print post.xact.code
+ print(post.xact.code)