gerritのローカルリポジトリを作成しています。
コマンドを実行すると:
git-review -s
それは私に次のようなエラーを与えます:
branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'
誰かが私に同じことを解決する方法を教えてもらえますか?
gerritのローカルリポジトリを作成しています。
コマンドを実行すると:
git-review -s
それは私に次のようなエラーを与えます:
branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'
誰かが私に同じことを解決する方法を教えてもらえますか?
これは、あなたの価値が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
が期待どおりであることを確認してください