mirror of https://github.com/borgbackup/borg.git
Handle unprintable characters when printing to stdout and stderr.
This commit is contained in:
parent
330315ba0d
commit
4f86304437
|
@ -22,12 +22,16 @@ class Archiver(object):
|
||||||
|
|
||||||
def print_error(self, msg, *args):
|
def print_error(self, msg, *args):
|
||||||
msg = args and msg % args or msg
|
msg = args and msg % args or msg
|
||||||
|
if hasattr(sys.stderr, 'encoding'):
|
||||||
|
msg = msg.encode(sys.stderr.encoding, 'ignore')
|
||||||
self.exit_code = 1
|
self.exit_code = 1
|
||||||
print >> sys.stderr, msg
|
print >> sys.stderr, msg
|
||||||
|
|
||||||
def print_verbose(self, msg, *args, **kw):
|
def print_verbose(self, msg, *args, **kw):
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
msg = args and msg % args or msg
|
msg = args and msg % args or msg
|
||||||
|
if hasattr(sys.stdout, 'encoding'):
|
||||||
|
msg = msg.encode(sys.stdout.encoding, 'ignore')
|
||||||
if kw.get('newline', True):
|
if kw.get('newline', True):
|
||||||
print msg
|
print msg
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue