diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-16 14:19:27 -0600 |
---|---|---|
committer | Harmon <Harmon758@gmail.com> | 2020-02-16 14:19:27 -0600 |
commit | e4a83ff7910dc3617583da7e0965cd48a69bb669 (patch) | |
tree | 15d4da4ea741a3f9c10789df0dc9d5a900a81d14 /git/objects/submodule/root.py | |
parent | b0a69bbec284bccbeecdf155e925c3046f024d4c (diff) | |
download | gitpython-e4a83ff7910dc3617583da7e0965cd48a69bb669.tar.gz |
Replace deprecated Logger.warn with Logger.warning
Diffstat (limited to 'git/objects/submodule/root.py')
-rw-r--r-- | git/objects/submodule/root.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/root.py b/git/objects/submodule/root.py index f2035e5b..0af48710 100644 --- a/git/objects/submodule/root.py +++ b/git/objects/submodule/root.py @@ -265,7 +265,7 @@ class RootModule(Submodule): # this way, it will be checked out in the next step # This will change the submodule relative to us, so # the user will be able to commit the change easily - log.warn("Current sha %s was not contained in the tracking\ + log.warning("Current sha %s was not contained in the tracking\ branch at the new remote, setting it the the remote's tracking branch", sm.hexsha) sm.binsha = rref.commit.binsha # END reset binsha |