mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #1734 from pypeclub/bugfix/ftrack_custom_attribute_message
Ftrack missing custom attribute message
This commit is contained in:
commit
076d1d8a28
1 changed files with 8 additions and 6 deletions
|
|
@ -402,16 +402,18 @@ class SyncEntitiesFactory:
|
|||
items = []
|
||||
items.append({
|
||||
"type": "label",
|
||||
"value": "# Can't access Custom attribute <{}>".format(
|
||||
CUST_ATTR_ID_KEY
|
||||
)
|
||||
"value": (
|
||||
"# Can't access Custom attribute: <b>\"{}\"</b>"
|
||||
).format(CUST_ATTR_ID_KEY)
|
||||
})
|
||||
items.append({
|
||||
"type": "label",
|
||||
"value": (
|
||||
"<p>- Check if user \"{}\" has permissions"
|
||||
" to access the Custom attribute</p>"
|
||||
).format(self._api_key)
|
||||
"<p>- Check if your User and API key has permissions"
|
||||
" to access the Custom attribute."
|
||||
"<br>Username:\"{}\""
|
||||
"<br>API key:\"{}\"</p>"
|
||||
).format(self._api_user, self._api_key)
|
||||
})
|
||||
items.append({
|
||||
"type": "label",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue