Merge pull request #216 from BigRoy/ANM-15

Update vendor/pather to 0.1.1
This commit is contained in:
Roy Nieterau 2018-12-19 10:53:06 +01:00 committed by GitHub
commit c867f8ffa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -9,8 +9,8 @@ import glob
from .error import ParseError
# Regex pattern that matches valid file
# TODO: Implement complete pattern if required
RE_FILENAME = '[-\w.,; \[\]]'
# A filename may not contain \/:*?"<>|
RE_FILENAME = r"[^\\/:\"*?<>|]"
def format(pattern, data, allow_partial=True):

View file

@ -1,7 +1,7 @@
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_PATCH = 0
VERSION_PATCH = 1
version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info