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/bg_blender.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/bg_blender.py')
-rw-r--r--blenderkit/bg_blender.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/blenderkit/bg_blender.py b/blenderkit/bg_blender.py
index 7dda1559..bdce32af 100644
--- a/blenderkit/bg_blender.py
+++ b/blenderkit/bg_blender.py
@@ -126,7 +126,8 @@ def bg_update():
tcom.lasttext = tcom.outtext
if tcom.outtext != '':
tcom.outtext = ''
- estring = tcom.eval_path_state + ' = tcom.lasttext'
+ text =tcom.lasttext.replace("'","")
+ estring = tcom.eval_path_state + ' = text'
exec(estring)
# print(tcom.lasttext)