From 56904287a3260918d968333af46a120306d629ad Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Tue, 5 Nov 2024 16:02:58 +0100 Subject: [PATCH] fix import forgotten to add to older commit --- common/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/utils.py b/common/utils.py index d360045..ebeae9d 100644 --- a/common/utils.py +++ b/common/utils.py @@ -47,6 +47,8 @@ def deprecated(func): return func(*args, **kwargs) return new_func +import subprocess +import sys def open_file_browser(directory): if sys.platform=='win32': os.startfile(directory)