gerrit错误:Nonetype对象没有属性拆分

时间:2012-04-13 05:52:51

标签: python gerrit attributeerror

我正在为gerrit创建本地存储库。

执行命令时:

git-review -s

它给了我错误:

branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'

任何人都可以告诉我如何解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

如果您的值为None

,就会发生这种情况
In [119]: branch_name = None

In [120]: branch_parts = branch_name.split("/")
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)

/home/avasal/<ipython console> in <module>()

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

确保branch_name中的值符合预期