Skip to content

Commit

Permalink
Use ..._dm instead of ...-dm
Browse files Browse the repository at this point in the history
This is to avoid possible name conflicts with VMs created via the
qubes-manager gui.

See: QubesOS/qubes-issues#2422
  • Loading branch information
jpouellet committed Nov 11, 2016
1 parent a6c25b7 commit efe3c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesmanager/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1662,7 +1662,7 @@ def open_context_menu(self, point):
action.setData(QVariant(text))
menu_empty = False

text = "/var/log/xen/console/guest-" + vm.name + "-dm.log"
text = "/var/log/xen/console/guest-" + vm.name + "_dm.log"
if os.path.exists(text):
action = self.logs_menu.addAction(QIcon(":/log.png"), text)
action.setData(QVariant(text))
Expand Down

1 comment on commit efe3c5e

@jpouellet
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.