Fix pause

This commit is contained in:
Bartłomiej Pluta
2019-07-01 20:53:18 +02:00
parent 3573ca4e76
commit 7b176b66c8

View File

@@ -38,6 +38,6 @@ def doPause(value, bpm):
time.sleep(60 * 4 / value / bpm)
def pause(args, env):
bpm = findVariable("bpm", env)
bpm = env.findVariable("bpm")
value = args[0]
doPause(value, bpm)