commit: ce64d85fdd92920cae60cd93039f6cae35de51ad
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 8 06:13:30 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Sep 8 14:11:48 2015 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ce64d85f
main.py: Add an exception for CatalystError which would have been already
handled
Cleanup some dead code.
catalyst/main.py | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/catalyst/main.py b/catalyst/main.py
index dc9342b..2a5bdd3 100644
--- a/catalyst/main.py
+++ b/catalyst/main.py
@@ -163,13 +163,10 @@ def build_target(addlargs):
raise CatalystError(
"Target \"%s\" not available." % target,
print_traceback=True)
-
- #try:
+ except CatalystError:
+ return
target.run()
- #except:
- #print "!!! catalyst: Error encountered during run of target "
+ \
- # addlargs["target"]
- #sys.exit(1)
+
def main():