tools/mpy-tool.py: Fix missing argument in dump() function

This makes the -d commandline argument usable again.
Pass empty string as parent name as listing starts from the root.
pull/3275/head
stijn 2017-08-16 10:37:00 +02:00
rodzic 9404093606
commit e4ab404780
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -239,7 +239,7 @@ class RawCode:
def dump(self):
# dump children first
for rc in self.raw_codes:
rc.freeze()
rc.freeze('')
# TODO
def freeze(self, parent_name):