Using new Blender ID addon public API

This commit is contained in:
2016-04-01 14:11:12 +02:00
parent 364cc75548
commit 1bb32033b6
2 changed files with 6 additions and 6 deletions

View File

@@ -68,8 +68,8 @@ def blender_id_profile() -> dict:
if not active_user_id:
return None
import blender_id.profiles
return blender_id.profiles.get_active_profile()
import blender_id
return blender_id.get_active_profile()
def pillar_api(pillar_endpoint: str = None) -> pillarsdk.Api: