From 56912a60fefbe1d1f00de122aec3d1839b52795c Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Sat, 16 Nov 2019 16:20:27 -0500 Subject: [PATCH] use uppercase OSC paths for baconscript --- buttond.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buttond.py b/buttond.py index 4328988..11ddd88 100755 --- a/buttond.py +++ b/buttond.py @@ -28,7 +28,7 @@ from signal import pause def activate(path): if path is None: return - path = path.strip('\"') + path = path.strip('\"').upper() if path is "": return print("doing macro ", path)