diff -r 8444b4f67e45 -r 19220d52bce7 src/hdalab/utils.py --- 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