~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/patches/svnshell.patch

Tags: 1.1.4-2
* Put call to dh_installdeb after call to dh_python.  Fixes purge
  of python2.3-subversion (closes: #308777) 
* Disable full testsuite.  All archs have already past it.  No need to
  burden the autobuilders with all the tests.
* Set DEB_BUILDDIR correctly since something is apparently setting it
  incorrectly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>. 
 
4
 
 
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
 
9
@@ -45,14 +45,8 @@
 
10
   def postcmd(self, stop, line):
 
11
     self._setup_prompt()
 
12
 
 
13
-  _errors = ["Huh?",
 
14
-             "Whatchoo talkin' 'bout, Willis?",
 
15
-             "Say what?",
 
16
-             "Nope.  Not gonna do it.",
 
17
-             "Ehh...I don't think so, chief."]
 
18
-
 
19
   def default(self, line):
 
20
-    print self._errors[randint(0, len(self._errors) - 1)]
 
21
+    print "Unknown command."
 
22
     
 
23
   def do_cat(self, arg):
 
24
     """dump the contents of a file"""