repr() print unicode prefix for string:
$ pwclient git-am N
Applying patch #N using u'git am'
Remove it:
$ pwclient git-am N
Applying patch #918868 using "git am"
git mixes single and double quotes, use double quotes which are more
frequently used.
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
(cherry picked from commit
ea5847ada3ac79908a2b251839e77e1b2f3dc6d2)
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, ' '.join(apply_cmd)))
print('Description: %s' % patch['name'])
s = rpc.patch_get_mbox(patch_id)