我正在为gerrit创建本地存储库。
执行命令时:
git-review -s
它给了我错误:
branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'
任何人都可以告诉我如何解决这个问题吗?
答案 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
中的值符合预期