Fixed bug introduced by fixing a pylint error
Here first was very much intentionally set to None, as later on we
check if it is none in an 'first if first else exception' statement.
Patch by: Sverre Rabbelier
--- a/app/soc/views/helper/access.py Mon Apr 06 22:02:16 2009 +0000
+++ b/app/soc/views/helper/access.py Mon Apr 06 22:53:47 2009 +0000
@@ -445,7 +445,7 @@
checks raised is reraised.
"""
- first = Exception()
+ first = None
for checker_name, args in checks:
try: