Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVilém Duha <vilda.novak@gmail.com>2021-03-18 20:14:08 +0300
committerVilém Duha <vilda.novak@gmail.com>2021-03-18 20:14:21 +0300
commit8823548db714f869be82ab8c78d33aef24c0d981 (patch)
treec4c2566731858d0c9592da46c500a7d3a662c395 /blenderkit/paths.py
parentba9a1dbe2730be0534d42091a721d9c74f7b0c6f (diff)
BlenderKit: fix upload
changes on is_free were not reflected in upload properly. Fix too long requests from search similar Adding more special characters to exclude when creating a file path.
Diffstat (limited to 'blenderkit/paths.py')
-rw-r--r--blenderkit/paths.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blenderkit/paths.py b/blenderkit/paths.py
index f5e9a3f2..0ca55271 100644
--- a/blenderkit/paths.py
+++ b/blenderkit/paths.py
@@ -169,7 +169,7 @@ def slugify(slug):
import unicodedata, re
slug = slug.lower()
- characters = '<>:"/\\|?*., ()'
+ characters = '<>:"/\\|?*., ()#'
for ch in characters:
slug = slug.replace(ch, '_')
# import re