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