瀏覽代碼

Previously the following would crash under Python 3.

    $ python examples/clone.py . /tmp/clone
Steven Myint 9 年之前
父節點
當前提交
b90cad1508
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      dulwich/porcelain.py

+ 5 - 1
dulwich/porcelain.py

@@ -97,6 +97,10 @@ from dulwich.server import (
 GitStatus = namedtuple('GitStatus', 'staged unstaged untracked')
 
 
+default_bytes_out_stream = getattr(sys.stdout, 'buffer', sys.stdout)
+default_bytes_err_stream = getattr(sys.stderr, 'buffer', sys.stderr)
+
+
 def encode_path(path):
     """Encode a path as bytestring."""
     # TODO(jelmer): Use something other than ascii?
@@ -216,7 +220,7 @@ def init(path=".", bare=False):
         return Repo.init(path)
 
 
-def clone(source, target=None, bare=False, checkout=None, errstream=sys.stdout, outstream=None):
+def clone(source, target=None, bare=False, checkout=None, errstream=default_bytes_err_stream, outstream=None):
     """Clone a local or remote git repository.
 
     :param source: Path or URL for source repository