From fe4cc67987fd3906ef3fc433108cc52fd59c0c2e Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Tue, 9 Oct 2007 07:42:30 +0000 Subject: [PATCH] Revert a debugging 'raise' from rev 195 As far as I understand, this was just a debugging aid. Remove it so that configuration errors are nicely handled. Reviewed-by: imsnah --- lib/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/config.py b/lib/config.py index 5cd8c5872..fe3ae5eb8 100644 --- a/lib/config.py +++ b/lib/config.py @@ -497,7 +497,6 @@ class ConfigWriter: try: data = objects.ConfigData.Load(f) except Exception, err: - raise raise errors.ConfigurationError(err) finally: f.close() -- GitLab