diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -2257,7 +2257,7 @@ if opts['logiofd']: # Line buffered because output is line based. - logfh = os.fdopen(int(opts['logiofd']), 'ab', 1) + logfh = os.fdopen(int(opts['logiofd']), r'ab', 1) elif opts['logiofile']: logfh = open(opts['logiofile'], 'ab', 1)