Files @ d5858e9fa689
Branch filter:

Location: light9/flax/textcues_to_cuelist

David McClosky
keyboardcomposer destroy fix and cleanups
- We were destroying KeyboardComposer a little too much. Fortunately,
we weren't passing the right number of arguments, so this was merely
an error.
- About the TODO comment removed: we don't need to use combine_dict
since Submaster logic will be changed entirely when we/if we move
to a SubServer world and keyboard composer will not be the wiser.
#!/usr/bin/env python

import sys
from CueFaders import CueList, Cue

cuelist = CueList('cues/dolly')

for line in sys.stdin.readlines():
    line = line.strip()
    if not line:
        continue
    page, name = line.split(' ', 1)
    print page, '|', name
    newcue = Cue(name)
    newcue.page = page
    cuelist.add_cue(newcue)