Fix use of except in tempest.

Ensure that except has a condition to comply with rule TEMPEST N201.

Change-Id: I96721394e5cfc31c163b3ec5ad5551f7cd5bbfab
diff --git a/tempest/tests/volume/base.py b/tempest/tests/volume/base.py
index f28be7d..f4401ff 100644
--- a/tempest/tests/volume/base.py
+++ b/tempest/tests/volume/base.py
@@ -138,7 +138,7 @@
         while True:
             try:
                 condition()
-            except:
+            except Exception:
                 pass
             else:
                 return