Coding style overhaul for Python files (PEP8 conformant). Removed buggy csstidy pytho...
[redakcja.git] / apps / compress / versioning / base.py
index 8b81519..0be9aca 100644 (file)
@@ -2,12 +2,13 @@ class VersioningBase(object):
 
     def get_version(self, source_files):
         raise NotImplementedError
-        
+
     def needs_update(self, output_file, source_files, version):
         raise NotImplementedError
-        
+
+
 class VersioningError(Exception):
     """
     This exception is raised when version creation fails
     """
-    pass
\ No newline at end of file
+    pass