Skip to content

Commit 1cd1c88

Browse files
committed
q-dev: rename attach-confirm -> qubes-device-attach-confirm
1 parent a3b781c commit 1cd1c88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qubes/ext/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async def confirm_device_attachment(device, frontends) -> str:
146146
# pylint: disable=consider-using-with
147147
# vm names are safe to just join by spaces
148148
proc = await asyncio.create_subprocess_shell(
149-
" ".join(["attach-confirm", device.backend_domain.name,
149+
" ".join(["qubes-device-attach-confirm", device.backend_domain.name,
150150
device.port_id, "'" + device.description + "'",
151151
*front_names]),
152152
stdout=asyncio.subprocess.PIPE
@@ -157,5 +157,5 @@ async def confirm_device_attachment(device, frontends) -> str:
157157
return target_name
158158
return ""
159159
except Exception as exc:
160-
print("attach-confirm", exc, file=sys.stderr)
160+
print(exc, file=sys.stderr)
161161
return ""

0 commit comments

Comments
 (0)