diff options
Diffstat (limited to 'subcmds/info.py')
-rw-r--r-- | subcmds/info.py | 7 |
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 | ||
17 | from command import PagedCommand | 17 | from command import PagedCommand |
18 | from color import Coloring | 18 | from color import Coloring |
19 | from error import NoSuchProjectError | ||
20 | from git_refs import R_M | 19 | from git_refs import R_M |
21 | 20 | ||
22 | class _Coloring(Coloring): | 21 | class _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: ") |