Skip to content

Commit

Permalink
Aligned numbers in wad contents list.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 27, 2006
1 parent 76a9a37 commit 2c09a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/build/scripts/wadcompiler.py
Expand Up @@ -112,8 +112,8 @@ def set_type(self, new_type):
def list(self):
for i in range(len(self.lumps)):
lump = self.lumps[i]
print "%i -- %s (at %i, %i bytes)" % (i, lump.name, lump.offset,
len(lump.data))
print "%5i -- %-8s (at %8i, %8i bytes)" % (i, lump.name, lump.offset,
len(lump.data))
print "%i lumps total." % len(self.lumps)

def insert(self, at_lump, names):
Expand Down

0 comments on commit 2c09a94

Please sign in to comment.