Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.3, 2.0.4, and 2.0.5

stable run: fix abort when outside a repository (fixes #373)

Changeset bff1dcfebb51

Parent 5b7f964d16a2

by Steve Borho

Changes to one file · Browse files at bff1dcfebb51 Showing diff from parent 5b7f964d16a2 Diff from another changeset...

 
290
291
292
293
294
 
 
295
296
297
 
290
291
292
 
 
293
294
295
296
297
@@ -290,8 +290,8 @@
  ui.quiet = True     if cmd not in nonrepo_commands.split() and not path: - error.RepoError(_("There is no Mercurial repository here" - " (.hg not found)")) + raise error.RepoError(_("There is no Mercurial repository here" + " (.hg not found)"))     cmdoptions['mainapp'] = True   d = lambda: util.checksignature(func)(ui, *args, **cmdoptions)