Convert old style except blocks to except Exception as variable: blocks
[htsworkflow.git] / htsworkflow / pipelines / test / test_retrieve_config.py
index 1a24c633b82314ac40ed933a7bfb2698d27d8510..7ca87905d623e0ff6ce0c5c880851a283490176f 100644 (file)
@@ -5,7 +5,7 @@ from StringIO import StringIO
 
 try:
     import json
-except ImportError, e:
+except ImportError as e:
     import simplejson as json
 
 from django.test import TestCase