From 244691713d6c165858eb871e5a468daf9f78c776 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 5 Dec 2020 15:06:27 -0800 Subject: [PATCH] Add constant WINDOWS_BADCHARS for use in other programs. --- voussoirkit/pathclass.py | 1 + 1 file changed, 1 insertion(+) diff --git a/voussoirkit/pathclass.py b/voussoirkit/pathclass.py index 0bad1e3..9a96200 100644 --- a/voussoirkit/pathclass.py +++ b/voussoirkit/pathclass.py @@ -4,6 +4,7 @@ import re from voussoirkit import winglob +WINDOWS_BADCHARS = {'\\', '/', ':', '*', '?', '<', '>', '|', '"'} class PathclassException(Exception): pass