Skip to content

Commit

Permalink
Lowercase names.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkd77 committed Feb 17, 2013
1 parent b62deca commit ca848cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsk2tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def header_prefix(name, typ, length, start):
if name[0] == '.':
name = name[1:]
name += " "
name = name[:10]
name = name[:10].lower()
header.fromstring(name)
header.append(length & 255)
header.append(length / 256)
Expand Down

0 comments on commit ca848cf

Please sign in to comment.