diff options
author | Elijah Newren <newren@gmail.com> | 2019-11-05 17:07:26 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-10 16:00:54 +0900 |
commit | 96c0caf5e303c189cc528fe67703828e1ffacfb2 (patch) | |
tree | 61e94aa52243d0c633b5372a7b388d2d4fe17496 /contrib | |
parent | Fix spelling errors in names of tests (diff) | |
download | tgif-96c0caf5e303c189cc528fe67703828e1ffacfb2.tar.xz |
Fix spelling errors in messages shown to users
Reported-by: Jens Schleusener <Jens.Schleusener@fossies.org>
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/svn-fe/svnrdump_sim.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/svn-fe/svnrdump_sim.py b/contrib/svn-fe/svnrdump_sim.py index 50c6a4f89d..8a3cee6175 100755 --- a/contrib/svn-fe/svnrdump_sim.py +++ b/contrib/svn-fe/svnrdump_sim.py @@ -54,7 +54,7 @@ if __name__ == "__main__": print("usage: %s dump URL -rLOWER:UPPER") sys.exit(1) if not sys.argv[1] == 'dump': - raise NotImplementedError('only "dump" is suppported.') + raise NotImplementedError('only "dump" is supported.') url = sys.argv[2] r = ('0', 'HEAD') if len(sys.argv) == 4 and sys.argv[3][0:2] == '-r': |