1
* tools/examples/svnshell.py : Make the error messages that svnshell
2
emits for unknown commands less confusing.
3
Roland Illig <roland.illig@gmx.de>.
5
Index: tools/examples/svnshell.py
6
===================================================================
7
--- tools/examples/svnshell.py 2004-05-24 12:14:48.000000000 -0700
8
+++ tools/examples/svnshell.py 2005-01-16 22:54:23.020279102 -0800
10
def postcmd(self, stop, line):
14
- "Whatchoo talkin' 'bout, Willis?",
16
- "Nope. Not gonna do it.",
17
- "Ehh...I don't think so, chief."]
19
def default(self, line):
20
- print self._errors[randint(0, len(self._errors) - 1)]
21
+ print "Unknown command."
23
def do_cat(self, arg):
24
"""dump the contents of a file"""