From bb3262079b9cc254f7103fb058199d0eb1eef9be Mon Sep 17 00:00:00 2001 From: Peter Siegel Date: Sun, 2 Feb 2025 13:44:21 +0100 Subject: [PATCH] fix: add comment about defaults --- plugins/connection/lxd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/connection/lxd.py b/plugins/connection/lxd.py index 24befa3b88..057ff716a4 100644 --- a/plugins/connection/lxd.py +++ b/plugins/connection/lxd.py @@ -193,7 +193,7 @@ class Connection(ConnectionBase): if self.get_option("project"): local_cmd.extend(["--project", self.get_option("project")]) - uid, gid = (-1, -1) + uid, gid = (-1, -1) # lxc file push defaults if self.get_option("remote_user") != "root": uid, gid = self._get_remote_uid_gid()