aboutsummaryrefslogtreecommitdiffstats
path: root/pack.py
diff options
context:
space:
mode:
Diffstat (limited to 'pack.py')
-rwxr-xr-xpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack.py b/pack.py
index 13a4971..29949b4 100755
--- a/pack.py
+++ b/pack.py
@@ -62,6 +62,7 @@ def byteify(word):
out.append(byte[:1])
return out
+@subv.with_parsed_lines
def pack(iter):
segment = None
@@ -78,7 +79,6 @@ def pack(iter):
}
for line in iter:
- line = subv.parse(line)
if line['type'] == 'data':
for part in line['data']:
buf = bits.concat(buf, bits.from_part(part))