use spaces for alignment
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@222 4cde692c-a291-49d1-8350-778aa11640f8
diff --git a/Lib/fontTools/ttLib/sfnt.py b/Lib/fontTools/ttLib/sfnt.py
index 66f4753..664130c 100644
--- a/Lib/fontTools/ttLib/sfnt.py
+++ b/Lib/fontTools/ttLib/sfnt.py
@@ -159,21 +159,21 @@
sfntDirectoryFormat = """
> # big endian
- sfntVersion: 4s
- numTables: H # number of tables
- searchRange: H # (max2 <= numTables)*16
- entrySelector: H # log2(max2 <= numTables)
- rangeShift: H # numTables*16-searchRange
+ sfntVersion: 4s
+ numTables: H # number of tables
+ searchRange: H # (max2 <= numTables)*16
+ entrySelector: H # log2(max2 <= numTables)
+ rangeShift: H # numTables*16-searchRange
"""
sfntDirectorySize = sstruct.calcsize(sfntDirectoryFormat)
sfntDirectoryEntryFormat = """
> # big endian
- tag: 4s
- checkSum: l
- offset: l
- length: l
+ tag: 4s
+ checkSum: l
+ offset: l
+ length: l
"""
sfntDirectoryEntrySize = sstruct.calcsize(sfntDirectoryEntryFormat)