1
0
Fork 0

strip quotes from OSC path

This commit is contained in:
Kevin Matz 2019-11-16 16:20:05 -05:00
parent c81e14bb52
commit 065d27ad31
1 changed files with 1 additions and 1 deletions

View File

@ -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)