From 9af4e1b400546a189f51a2f7fd16f257754428e8 Mon Sep 17 00:00:00 2001 From: Etoh Date: Mon, 1 Jul 2013 23:01:02 +0100 Subject: [PATCH] Add filename strip regex constant --- syncplay/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/syncplay/constants.py b/syncplay/constants.py index 70255d8..f98fdd5 100644 --- a/syncplay/constants.py +++ b/syncplay/constants.py @@ -20,6 +20,7 @@ SERVER_STATE_INTERVAL = 1 WARNING_OSD_MESSAGES_LOOP_INTERVAL = 1 #Usually there's no need to adjust these +FILENAME_STRIP_REGEX = u"[-~_\.\[\](): ]" COMMANDS_UNDO = ["u", "undo", "revert"] COMMANDS_LIST = ["l", "list", "users"] COMMANDS_PAUSE = ["p", "play", "pause"]