src/hdalab/utils.py
changeset 492 19220d52bce7
parent 462 df8b3b49e81c
--- a/src/hdalab/utils.py	Fri Mar 06 18:12:15 2015 +0100
+++ b/src/hdalab/utils.py	Sun Mar 08 14:53:52 2015 +0100
@@ -4,12 +4,14 @@
 
 @author: ymh and tc
 '''
+import hashlib
+import logging
+import re
+
 from django.core.cache import cache
 from django.utils.encoding import smart_str
-import hashlib
-import re
 
-import logging
+
 logger = logging.getLogger(__name__)
 
 
@@ -29,4 +31,7 @@
     while n > 0:
         digits.insert(0, n % b)
         n  = n // b
-    return digits
\ No newline at end of file
+    return digits
+
+    
+    
\ No newline at end of file