summaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'client.py')
-rw-r--r--client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.py b/client.py
index 507e149..721d510 100644
--- a/client.py
+++ b/client.py
@@ -40,7 +40,8 @@ class LightLoopClient(object):
raw_data = ''
for frame in zip(*self.composition):
print frame
- sequences = zip(*[zip(*self.sequences[seq]) for seq in frame])
+ sequences = [zip(*self.sequences[seq]) for seq in frame]
+ sequences = zip(*sequences)
raw_data += ''.join([''.join([''.join(y) for y in x]) for x in sequences])
print raw_data