]> git.llucax.com Git - software/pymin.git/commitdiff
Better error message of wrong arguments in Dispatcher.
authorLeandro Lucarella <llucarella@integratech.com.ar>
Mon, 8 Oct 2007 16:19:28 +0000 (13:19 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Mon, 8 Oct 2007 16:19:28 +0000 (13:19 -0300)
pymin/dispatcher.py

index 0127d4f6410cc9fe10f49aa818236d45453f566d..10e7fb8fe74349bb94bc53b7960842a6a7d451bb 100644 (file)
@@ -459,7 +459,8 @@ class Dispatcher:
                 pl = ''
                 if n_ok > 1:
                     pl = 's'
-                raise WrongArgumentsError(u'%s takes %s %s argument%s, %s given'
+                raise WrongArgumentsError(
+                        u'Command "%s" takes %s %s argument%s, %s given.'
                             % (handler.__name__, quant, n_ok, pl, n_bad))
             raise