mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Merge pull request #216 from BigRoy/ANM-15
Update vendor/pather to 0.1.1
This commit is contained in:
commit
c867f8ffa6
2 changed files with 3 additions and 3 deletions
4
colorbleed/vendor/pather/core.py
vendored
4
colorbleed/vendor/pather/core.py
vendored
|
|
@ -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):
|
||||
|
|
|
|||
2
colorbleed/vendor/pather/version.py
vendored
2
colorbleed/vendor/pather/version.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue