shebangs need to point at python2
[sfa.git] / sfa / rspecs / version.py
index 91c96e0..d2ef55e 100644 (file)
@@ -1,6 +1,7 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
 from sfa.util.sfalogging import logger
 
+
 class RSpecVersion:
     type = None
     content_type = None
@@ -26,5 +27,3 @@ class RSpecVersion:
 
     def __str__(self):
         return "%s %s" % (self.type, self.version)
-    
-