Skip to content

Commit

Permalink
Update package_application.py
Browse files Browse the repository at this point in the history
Updated BYTE_CODE_FILES to raw string
  • Loading branch information
phate999 authored Mar 29, 2024
1 parent 49344bc commit 4354d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bin/package_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SIGNATURE_FILE = 'SIGNATURE.DS'
MANIFEST_FILE = 'MANIFEST.json'

BYTE_CODE_FILES = re.compile('^.*\.(pyc|pyo|pyd)$')
BYTE_CODE_FILES = re.compile(r'^.*/.(pyc|pyo|pyd)$')
BYTE_CODE_FOLDERS = re.compile('^(__pycache__)$')


Expand Down

0 comments on commit 4354d11

Please sign in to comment.