summaryrefslogtreecommitdiff
path: root/git/objects/submodule/base.py
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-06-24 03:22:56 +0100
committerGitHub <noreply@github.com>2021-06-24 03:22:56 +0100
commit6500844a925f0df90a0926dbdfc7b5ebb4a97bc9 (patch)
treeb5748241ef309c927269c27efcfad076cc64275d /git/objects/submodule/base.py
parent00b5802f9b8cc01e0bf0af3efdd3c797d7885bb1 (diff)
parent703280b8c3df6f9b1a5cbe0997b717edbcaa8979 (diff)
downloadgitpython-6500844a925f0df90a0926dbdfc7b5ebb4a97bc9.tar.gz
Merge branch 'gitpython-developers:main' into main
Diffstat (limited to 'git/objects/submodule/base.py')
-rw-r--r--git/objects/submodule/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py
index b03fa22a..8cf4dd1e 100644
--- a/git/objects/submodule/base.py
+++ b/git/objects/submodule/base.py
@@ -390,7 +390,7 @@ class Submodule(IndexObject, Iterable, Traversable):
mrepo = None
if url is None:
if not has_module:
- raise ValueError("A URL was not given and existing repository did not exsit at %s" % path)
+ raise ValueError("A URL was not given and a repository did not exist at %s" % path)
# END check url
mrepo = sm.module()
urls = [r.url for r in mrepo.remotes]