Skip to content

Commit ae4edd6

Browse files
committed
Use print_function import everywhere using print.
As requested in <https://sourceforge.net/p/roundup/mailman/message/36374864/>, to avoid accidental future addition of print statements incompatible with Python 3.
1 parent a7de72a commit ae4edd6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

scripts/contributors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
"""
99

10+
from __future__ import print_function
1011
from subprocess import check_output
1112

1213
# --- output settings

scripts/schema-dump.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"anatoly techtonik <[email protected]>"
1717
]
1818

19+
from __future__ import print_function
1920
import os
2021
import sys
2122
from roundup.anypy import xmlrpc_

0 commit comments

Comments
 (0)