Use tabs instead of spaces

This commit is contained in:
Stefan Ritter 2011-07-12 09:11:21 +02:00
parent fe91856286
commit e9581fbf2a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ line_start_hyphen = re.compile("^-.*$")
line_start_plus = re.compile("^\+.*$") line_start_plus = re.compile("^\+.*$")
# Indention # Indention
ind = " " ind = "\t"
def generate_uuid(string): def generate_uuid(string):
string_md5sum = md5(string.encode("utf-8")).hexdigest() string_md5sum = md5(string.encode("utf-8")).hexdigest()