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:
authorVilem Duha <vilem.duha@gmail.com>2019-05-17 22:25:33 +0300
committerVilem Duha <vilem.duha@gmail.com>2019-05-19 16:45:50 +0300
commitb0027289420fd8eaf7c2686e6a64ffe8b2e4419e (patch)
tree70c636f1268a77dc7369d5425e59143688dfd57e /blenderkit/oauth.py
parentab57ec6a76cf344c6ae2c2d61b446a6e9bc4b0db (diff)
BlenderKit: Updated tooltip layout and finishing profile and OAuth
Diffstat (limited to 'blenderkit/oauth.py')
-rw-r--r--blenderkit/oauth.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/blenderkit/oauth.py b/blenderkit/oauth.py
index 2e0f76eb..c5d1932a 100644
--- a/blenderkit/oauth.py
+++ b/blenderkit/oauth.py
@@ -26,7 +26,7 @@ from urllib.parse import parse_qs, urlparse
import requests
import threading
import blenderkit
-from blenderkit import tasks_queue, utils, paths, search
+from blenderkit import tasks_queue, utils, paths, search, categories
CLIENT_ID = "IdFRwa3SGA8eMpzhRVFMg5Ts8sPK93xBjif93x0F"
PORTS = [62485, 1234]
@@ -127,6 +127,7 @@ def write_tokens(auth_token, refresh_token):
props = utils.get_search_props()
props.report = 'Login success!'
search.get_profile()
+ categories.fetch_categories_thread(auth_token)
class RegisterLoginOnline(bpy.types.Operator):