summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@debian.org>2018-08-01 20:44:36 -0400
committerJames McCoy <jamessan@debian.org>2018-10-19 21:37:29 -0400
commit2839f4776b7e40d2a9a21cc8089ed363a54d9359 (patch)
treeb6b4cb938d4bdaf00fd71abe3a6bce82ecccd745
parent68fd830536ce365dc894d4e68b14b75553041522 (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"""