Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/364'
Browse files Browse the repository at this point in the history
* origin/pr/364:
  Allow Hyphen character in custom labels
  • Loading branch information
marmarek committed Jun 26, 2024
2 parents 8d1bedf + 943c383 commit 5a65f5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesmanager/qube_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def data(self, index, role):
if col_name == "Type":
return vm.klass
if col_name == "Label":
vmtype, vmcolor = vm.icon.split("-")
vmtype, vmcolor = vm.icon.split("-", 1)
try:
processed_color = str(vm.label.index)
except ValueError:
Expand Down

0 comments on commit 5a65f5b

Please sign in to comment.