Mercurial > public > mercurial-scm > hg
comparison mercurial/dispatch.py @ 15632:c9913ef748f7
dispatch: remove extra newline
The return statement belongs to the lines above.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 10 Dec 2011 18:40:05 +0100 |
parents | 646759147717 |
children | cc2da4a5ed9a |
comparison
equal
deleted
inserted
replaced
15630:e6868bd17f24 | 15632:c9913ef748f7 |
---|---|
257 def fn(ui, *args): | 257 def fn(ui, *args): |
258 ui.warn(_("no definition for alias '%s'\n") % self.name) | 258 ui.warn(_("no definition for alias '%s'\n") % self.name) |
259 return 1 | 259 return 1 |
260 self.fn = fn | 260 self.fn = fn |
261 self.badalias = True | 261 self.badalias = True |
262 | |
263 return | 262 return |
264 | 263 |
265 if self.definition.startswith('!'): | 264 if self.definition.startswith('!'): |
266 self.shell = True | 265 self.shell = True |
267 def fn(ui, *args): | 266 def fn(ui, *args): |