From a25701991dda35cd7e7e24f2f89a723a63cd8f32 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 4 Mar 2026 16:29:19 +0000 Subject: [PATCH] distro.backend.debian.Refresh.run(): Fix apt_get() Fix call to apt_get(), needs to be a list, not a string. --- src/python/jw/pkg/cmds/distro/backend/debian/Refresh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/jw/pkg/cmds/distro/backend/debian/Refresh.py b/src/python/jw/pkg/cmds/distro/backend/debian/Refresh.py index a1f1ee94..1736e06b 100644 --- a/src/python/jw/pkg/cmds/distro/backend/debian/Refresh.py +++ b/src/python/jw/pkg/cmds/distro/backend/debian/Refresh.py @@ -11,4 +11,4 @@ class Refresh(Base): super().__init__(parent) async def run(self, args: Namespace): - return await self.util.apt_get('update') + return await self.util.apt_get(['update'])