diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-20 11:08:30 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-20 11:08:30 +0000 |
commit | 15b8a5bbdf3fb81edc6eac707bd2bd78d54394cf (patch) | |
tree | dbb60d5bbf670f1872539fca80263f17352f5c26 /pym/repoman | |
parent | Update syntax of 'except' statements for compatibility with Python 3. (diff) | |
download | portage-multirepo-15b8a5bbdf3fb81edc6eac707bd2bd78d54394cf.tar.gz portage-multirepo-15b8a5bbdf3fb81edc6eac707bd2bd78d54394cf.tar.bz2 portage-multirepo-15b8a5bbdf3fb81edc6eac707bd2bd78d54394cf.zip |
Update syntax of calls to print() for compatibility with Python 3.
(2to3-3.1 -f print -nw ${FILES})
svn path=/main/trunk/; revision=14290
Diffstat (limited to 'pym/repoman')
-rw-r--r-- | pym/repoman/utilities.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py index 18480294..a65e57d5 100644 --- a/pym/repoman/utilities.py +++ b/pym/repoman/utilities.py @@ -309,7 +309,7 @@ def get_commit_message_with_stdin(): @rtype: string or None @returns: A string on success or None if an error occurs. """ - print "Please enter a commit message. Use Ctrl-d to finish or Ctrl-c to abort." + print("Please enter a commit message. Use Ctrl-d to finish or Ctrl-c to abort.") commitmessage = [] while True: commitmessage.append(sys.stdin.readline()) |