diff --git a/git-pull-request/git-pull-request.py b/git-pull-request/git-pull-request.py index eb032ddb3e..166b45fd52 100755 --- a/git-pull-request/git-pull-request.py +++ b/git-pull-request/git-pull-request.py @@ -121,6 +121,12 @@ # import isodate # from datetime import date +import codecs +import sys + +UTF8Writer = codecs.getwriter('utf8') +sys.stdout = UTF8Writer(sys.stdout) + # Connecting through a proxy, # requires: socks.py from http://socksipy.sourceforge.net/ next to this file