mirror of
https://github.com/sheumann/hush.git
synced 2025-02-10 23:31:01 +00:00
- make Christian happy
This commit is contained in:
parent
49bdf28c32
commit
7bd8d8fd26
@ -21,9 +21,8 @@ for f in sys.argv[1], sys.argv[2]:
|
|||||||
def getsizes(file):
|
def getsizes(file):
|
||||||
sym = {}
|
sym = {}
|
||||||
for l in os.popen("nm --size-sort " + file).readlines():
|
for l in os.popen("nm --size-sort " + file).readlines():
|
||||||
l = l.strip()
|
|
||||||
# Skip empty lines
|
# Skip empty lines
|
||||||
if not len(l): continue
|
if not len(l.strip()): continue
|
||||||
# Skip archive members
|
# Skip archive members
|
||||||
if len(l.split()) == 1 and l.endswith(':'):
|
if len(l.split()) == 1 and l.endswith(':'):
|
||||||
continue
|
continue
|
||||||
|
Loading…
x
Reference in New Issue
Block a user