From 8f0ea42dd486275556735e5632f2e66dafe12eae Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Tue, 11 Aug 2015 16:50:55 -0500 Subject: [PATCH] Allow for graceful failure by finishing string. ;) --- setupbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupbase.py b/setupbase.py index a379b9e92..7afb5f9b6 100644 --- a/setupbase.py +++ b/setupbase.py @@ -422,7 +422,7 @@ def css_js_prerelease(command, strict=False): self.distribution.run_command('js') self.distribution.run_command('css') except Exception as e: - log.warn("rebuilding js and css failed.) + log.warn("rebuilding js and css failed.") raise e command.run(self)