summaryrefslogtreecommitdiff
path: root/examples/gbp-add-patch
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-21 16:12:09 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 12:10:55 +0100
commit0a4198a732e870c12006ed5b03cf16c5cc8bde23 (patch)
tree7ca855ad0ec2488f5f0bfe6392691afd19bc308a /examples/gbp-add-patch
parenta33276d8da726d7e60908884cb404e56ec907064 (diff)
Fix print function usage in examples too
Diffstat (limited to 'examples/gbp-add-patch')
-rwxr-xr-xexamples/gbp-add-patch8
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/gbp-add-patch b/examples/gbp-add-patch
index 62d35ce..b635bb7 100755
--- a/examples/gbp-add-patch
+++ b/examples/gbp-add-patch
@@ -1,7 +1,7 @@
#!/usr/bin/python -u
# vim: set fileencoding=utf-8 :
#
-# (C) 2010 Guido Guenther <agx@sigxcpu.org>
+# (C) 2010,2015 Guido Guenther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@@ -31,6 +31,7 @@ commits debian/patches/0010-bla-fasel with this changelog message:
Closes: <bugs>
Thanks: <author>
"""
+from __future__ import print_function
import re
import sys
@@ -85,7 +86,8 @@ def main(argv):
try:
repo = GitRepository(os.path.curdir)
except GitRepositoryError:
- print >>sys.stderr, "%s is not a git repository" % (os.path.abspath('.'))
+ print("%s is not a git repository" % os.path.abspath('.'),
+ file=sys.stderr)
return 1
try:
@@ -106,7 +108,7 @@ def main(argv):
retval = 1
except GbpError as err:
if str(err):
- print >>sys.stderr, err
+ print(err, file=sys.stderr)
retval = 1
return retval