2

gerritのローカルリポジトリを作成しています。

コマンドを実行すると:

git-review -s

それは私に次のようなエラーを与えます:

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

誰かが私に同じことを解決する方法を教えてもらえますか?

4

1 に答える 1

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が期待どおりであることを確認してください

于 2012-04-13T05:59:05.993 に答える