diff options
author | Steve McIntyre <steve.mcintyre@linaro.org> | 2014-12-23 22:29:46 +0000 |
---|---|---|
committer | Steve McIntyre <steve.mcintyre@linaro.org> | 2014-12-23 22:29:46 +0000 |
commit | 798af8420d85c093d77178b9f8f6091fe72363d1 (patch) | |
tree | 1d31b46f838c365f4e2a9fe79485679d34533f46 /util.py | |
parent | fc5112453920415c0a6d765862307df294af070d (diff) | |
download | vland-798af8420d85c093d77178b9f8f6091fe72363d1.tar.gz |
Don't catch all the exceptions for now - debugging...
Change-Id: Ic98e802fae172d1af202e0e09f67c548cb307d6a
Diffstat (limited to 'util.py')
-rw-r--r-- | util.py | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -77,8 +77,8 @@ class VlanUtil: except InputError: raise - except: - raise InputError("Invalid input in query") +# except: +# raise InputError("Invalid input in query") return ret @@ -105,8 +105,8 @@ class VlanUtil: except InputError: raise - except: - raise InputError("Invalid input in query") +# except: +# raise InputError("Invalid input in query") return ret @@ -138,8 +138,8 @@ class VlanUtil: except InputError: raise - except: - raise InputError("Invalid input in query") +# except: +# raise InputError("Invalid input in query") return ret @@ -173,8 +173,8 @@ class VlanUtil: print 'got error %s' % e raise - except: - raise InputError("Invalid input in query") +# except: +# raise InputError("Invalid input in query") return ret |