Skip to content

Commit 9b0ed46

Browse files
authored
fix for #1048 (#1049)
1 parent c47666c commit 9b0ed46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mslib/msui/mscolab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ def handle_update_permission(self, p_id, u_id, access_level):
11681168
if item.p_id == p_id:
11691169
project_name = item.project_path
11701170
item.access_level = access_level
1171-
item.setText('{project_name} - {item.access_level}')
1171+
item.setText(f'{project_name} - {item.access_level}')
11721172
break
11731173
if project_name is not None:
11741174
show_popup(self, "Permission Updated",

0 commit comments

Comments
 (0)