diff options
author | Mike Frysinger <vapier@chromium.org> | 2015-10-16 17:15:30 -0400 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2015-10-16 23:20:58 +0100 |
commit | f9c7cceb3ae5745d6a9d65f8a1733e03c90ca782 (patch) | |
tree | 70888289ac2830e181f7a89290a3ff5d5b7ddcc5 | |
parent | 703207007ebb7af48e359b64950aea0602d198b4 (diff) | |
download | patchwork-f9c7cceb3ae5745d6a9d65f8a1733e03c90ca782.tar patchwork-f9c7cceb3ae5745d6a9d65f8a1733e03c90ca782.tar.gz |
pwclient: use print_function for better py3 compatibility
The script already tries to use print like a function in many places but
is really passing a parenthesized string. Import the print_function from
the future module so that it actually works as intended.
We also need to fix up a few latent print statements to make it work.
Signed-off-by: Mike Frysinger <vapier@chromium.org>
Reviewed-by: Stephen Finucane <stephen.finucane@hotmail.com>
-rwxr-xr-x | patchwork/bin/pwclient | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/patchwork/bin/pwclient b/patchwork/bin/pwclient index 46d11fb..d096f83 100755 --- a/patchwork/bin/pwclient +++ b/patchwork/bin/pwclient @@ -19,6 +19,8 @@ # along with Patchwork; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +from __future__ import print_function + import os import sys import xmlrpclib @@ -170,9 +172,9 @@ def action_list(rpc, filter, submitter_str, delegate_str, format_str=None): else: for id in ids: person = rpc.person_get(id) - print "Patches submitted by %s <%s>:" % \ - (unicode(person['name']).encode("utf-8"), \ - unicode(person['email']).encode("utf-8")) + print('Patches submitted by %s <%s>:' % + (unicode(person['name']).encode('utf-8'), + unicode(person['email']).encode('utf-8'))) f = filter f.add("submitter_id", id) patches = rpc.patch_list(f.d) @@ -187,8 +189,8 @@ def action_list(rpc, filter, submitter_str, delegate_str, format_str=None): else: for id in ids: person = rpc.person_get(id) - print "Patches delegated to %s <%s>:" % \ - (person['name'], person['email']) + print('Patches delegated to %s <%s>:' % + (person['name'], person['email'])) f = filter f.add("delegate_id", id) patches = rpc.patch_list(f.d) @@ -245,7 +247,7 @@ def action_get(rpc, patch_id): try: f.write(unicode(s).encode("utf-8")) f.close() - print "Saved patch to %s" % fname + print('Saved patch to %s' % fname) except: sys.stderr.write("Failed to write to %s\n" % fname) sys.exit(1) @@ -258,13 +260,13 @@ def action_apply(rpc, patch_id, apply_cmd=None): sys.exit(1) if apply_cmd is None: - print "Applying patch #%d to current directory" % patch_id + print('Applying patch #%d to current directory' % patch_id) apply_cmd = ['patch', '-p1'] else: - print "Applying patch #%d using %s" % ( - patch_id, repr(' '.join(apply_cmd))) + print('Applying patch #%d using %s' % + (patch_id, repr(' '.join(apply_cmd)))) - print "Description: %s" % patch['name'] + print('Description: %s' % patch['name']) s = rpc.patch_get_mbox(patch_id) if len(s) > 0: proc = subprocess.Popen(apply_cmd, stdin = subprocess.PIPE) @@ -299,7 +301,7 @@ def action_update_patch(rpc, patch_id, state = None, archived = None, commit = N success = False try: success = rpc.patch_set(patch_id, params) - except xmlrpclib.Fault, f: + except xmlrpclib.Fault as f: sys.stderr.write("Error updating patch: %s\n" % f.faultString) if not success: @@ -702,7 +704,7 @@ def main(): for patch_id in non_empty(h, patch_ids): s = rpc.patch_get_mbox(patch_id) if len(s) > 0: - print unicode(s).encode("utf-8") + print(unicode(s).encode("utf-8")) elif action == 'info': for patch_id in non_empty(h, patch_ids): |