Compare commits
3 Commits
2.12.1-beta
...
2.12.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 235b49d8c6 | |||
| a1fcdad0e3 | |||
| 584e543964 |
@@ -17,7 +17,7 @@ def modules_path() -> Path:
|
||||
|
||||
# set user modules path at beginning of paths for earlier hit
|
||||
if sys.path[1] != modules_path:
|
||||
sys.path.insert(1, modules_path)
|
||||
sys.path.insert(1, str(modules_path))
|
||||
|
||||
return modules_path
|
||||
|
||||
|
||||
@@ -40,7 +40,6 @@ class LoadUsers(bpy.types.Operator):
|
||||
user.name = profile.userInfo.name
|
||||
user.email = profile.userInfo.email
|
||||
user.company = profile.userInfo.company or ""
|
||||
user.authToken = profile.token
|
||||
try:
|
||||
client = SpeckleClient(
|
||||
host=profile.serverInfo.url,
|
||||
|
||||
@@ -73,7 +73,6 @@ class SpeckleUserObject(bpy.types.PropertyGroup):
|
||||
name: StringProperty(default="Speckle User")
|
||||
email: StringProperty(default="user@speckle.xyz")
|
||||
company: StringProperty(default="SpeckleSystems")
|
||||
authToken: StringProperty(default="", subtype='PASSWORD')
|
||||
streams: CollectionProperty(type=SpeckleStreamObject)
|
||||
active_stream: IntProperty(default=0)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user