forgot to convert tuple to list for the missing description field fix, derrrp
This commit is contained in:
parent
0dc55ab3dd
commit
5dde3be536
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ class RecordBuilder(object):
|
|||
def _compile(self, entries):
|
||||
for entry in entries:
|
||||
|
||||
(f_range, f_name, f_length, f_desc) = entry + ['']*(4-len(entry))
|
||||
(f_range, f_name, f_length, f_desc) = list(entry) + ['']*(4-len(entry))
|
||||
|
||||
f_length = int(f_length)
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue