Fixed "You are not logged in" message

This commit is contained in:
Sybren A. Stüvel 2019-02-01 17:20:01 +01:00
parent f04f07eaf1
commit 9028c38c68

View File

@ -512,7 +512,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
ex = self.async_task.exception() ex = self.async_task.exception()
if isinstance(ex, pillar.UserNotLoggedInError): if isinstance(ex, pillar.UserNotLoggedInError):
ex_msg = 'You are not logged in on Blender ID. Please log in at User Preferences, ' \ ex_msg = 'You are not logged in on Blender ID. Please log in at User Preferences, ' \
'System, Blender ID.' 'Add-ons, Blender ID Authentication.'
else: else:
ex_msg = str(ex) ex_msg = str(ex)
if not ex_msg: if not ex_msg: