summaryrefslogtreecommitdiffstats
path: root/subcmds/info.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/info.py')
-rw-r--r--subcmds/info.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/subcmds/info.py b/subcmds/info.py
index be5a8f2a..0d5696dd 100644
--- a/subcmds/info.py
+++ b/subcmds/info.py
@@ -16,7 +16,6 @@
16 16
17from command import PagedCommand 17from command import PagedCommand
18from color import Coloring 18from color import Coloring
19from error import NoSuchProjectError
20from git_refs import R_M 19from git_refs import R_M
21 20
22class _Coloring(Coloring): 21class _Coloring(Coloring):
@@ -82,10 +81,8 @@ class Info(PagedCommand):
82 self.out.nl() 81 self.out.nl()
83 82
84 def printDiffInfo(self, args): 83 def printDiffInfo(self, args):
85 try: 84 # We let exceptions bubble up to main as they'll be well structured.
86 projs = self.GetProjects(args) 85 projs = self.GetProjects(args)
87 except NoSuchProjectError:
88 return
89 86
90 for p in projs: 87 for p in projs:
91 self.heading("Project: ") 88 self.heading("Project: ")