Show More
@@ -333,7 +333,7 b' class cmdalias(object):' | |||
|
333 | 333 | |
|
334 | 334 | def __call__(self, ui, *args, **opts): |
|
335 | 335 | if self.shadows: |
|
336 | ui.debug("alias '%s' shadows command '%s'\n" % | |
|
336 | ui.debug(_("alias '%s' shadows command '%s'\n") % | |
|
337 | 337 | (self.name, self.cmdname)) |
|
338 | 338 | |
|
339 | 339 | if hasattr(self, 'shell'): |
@@ -343,7 +343,7 b' class cmdalias(object):' | |||
|
343 | 343 | util.checksignature(self.fn)(ui, *args, **opts) |
|
344 | 344 | except error.SignatureError: |
|
345 | 345 | args = ' '.join([self.cmdname] + self.args) |
|
346 | ui.debug("alias '%s' expands to '%s'\n" % (self.name, args)) | |
|
346 | ui.debug(_("alias '%s' expands to '%s'\n") % (self.name, args)) | |
|
347 | 347 | raise |
|
348 | 348 | |
|
349 | 349 | def addaliases(ui, cmdtable): |
General Comments 0
You need to be logged in to leave comments.
Login now