summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@debian.org>2018-08-01 20:44:36 -0400
committerJames McCoy <jamessan@debian.org>2018-08-04 12:27:23 -0400
commit4b140a624f49adc45cb5228468f8dc37af970690 (patch)
tree52498f5e06e8774a78d56b9e2f6fbeddc081f7de
parent28385d75af4ff09232078c5906f596c65fef7b67 (diff)
svnshell
Bug #234462: The error messages that svnshell spits out for unknown Bug #234462: The error messages that svnshell spits out for unknown commands are confusing. They should be replaced by a "Unknown command." error message. Upstream says we have no sense of humor. (: Patch from Roland Illig <roland.illig@gmx.de>. Gbp-Pq: Name svnshell
-rwxr-xr-xtools/examples/svnshell.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/examples/svnshell.py b/tools/examples/svnshell.py
index 9c67af4..b05e7ef 100755
--- a/tools/examples/svnshell.py
+++ b/tools/examples/svnshell.py
@@ -56,14 +56,8 @@ class SVNShell(Cmd):
def postcmd(self, stop, line):
self._setup_prompt()
- _errors = ["Huh?",
- "Whatchoo talkin' 'bout, Willis?",
- "Say what?",
- "Nope. Not gonna do it.",
- "Ehh...I don't think so, chief."]
-
def default(self, line):
- print(self._errors[randint(0, len(self._errors) - 1)])
+ print "Unknown command."
def do_cat(self, arg):
"""dump the contents of a file"""