拉动时的Python dulwich错误

时间:2016-08-31 12:56:05

标签: python git dulwich

当我尝试用dulwich拉一个文件夹时,我收到了这个错误:

 AttributeError: 'NoneType' object has no attribute 'startswith'

我在Windows或Linux上遇到了同样的错误。 克隆功能完美无缺

这是我的代码:

 from dulwich import porcelain
 import ssl

 depot_maj = "https://github.com/jelmer/dulwich.git"

 #Disable SSL verification for private server
 ssl._create_default_https_context = ssl._create_unverified_context


 #porcelain.clone(depot_maj, "test")
 porcelain.pull("test", depot_maj)

当我用这个改变拉动功能时:

 porcelain.pull("test", depot_maj, "refs/heads/master")

我得到了:

 TypeError: startswith first arg must be str or a tuple of str, not bytes

我做错了什么?

编辑:我正在运行Python 3.5

1 个答案:

答案 0 :(得分:0)

FWIW此问题已在较新版本的Dulwich中修复。