summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Fan <root@max.fan>2021-06-23 14:20:11 -0400
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-06-24 08:01:03 +0800
commit8bbf6520460dc4d2bfd7943cda666436f860cf71 (patch)
treea3ea535b09a78cb69d6b25ce515ce58a2da9b5da
parent93954d20310a7b77322211fd7c1eb8bd34217612 (diff)
downloadgitpython-8bbf6520460dc4d2bfd7943cda666436f860cf71.tar.gz
Fix exsit typo
-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..49d6aae1 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 existing repository did not exist at %s" % path)
# END check url
mrepo = sm.module()
urls = [r.url for r in mrepo.remotes]