From 065d27ad31df9375f675078e3d09d5b228e26757 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Sat, 16 Nov 2019 16:20:05 -0500 Subject: [PATCH] strip quotes from OSC path --- buttond.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buttond.py b/buttond.py index 0a47d3f..4328988 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('\"') if path is "": return print("doing macro ", path)