Skip to content

Commit

Permalink
q-dev: rename attach-confirm -> qubes-device-attach-confirm
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbartman committed Oct 14, 2024
1 parent 094af98 commit 4296c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qubesusbproxy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async def confirm_device_attachment(device, frontends) -> str:
# pylint: disable=consider-using-with
# vm names are safe to just join by spaces
proc = await asyncio.create_subprocess_shell(
" ".join(["attach-confirm", device.backend_domain.name,
" ".join(["qubes-device-attach-confirm", device.backend_domain.name,
device.port_id, "'" + device.description + "'",
*front_names]),
stdout=asyncio.subprocess.PIPE
Expand All @@ -157,5 +157,5 @@ async def confirm_device_attachment(device, frontends) -> str:
return target_name
return ""
except Exception as exc:
print("attach-confirm", exc, file=sys.stderr)
print(exc, file=sys.stderr)
return ""

0 comments on commit 4296c51

Please sign in to comment.