From 3446e0601a2408259d6ad5fcb659dc510addc549 Mon Sep 17 00:00:00 2001 From: Xarvex Date: Sun, 28 Apr 2024 14:07:23 -0500 Subject: [PATCH] Incorrect usage of list append Co-authored-by: William de Castro --- tagstudio/src/qt/ts_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tagstudio/src/qt/ts_qt.py b/tagstudio/src/qt/ts_qt.py index 31cf13a9..4719f7e4 100644 --- a/tagstudio/src/qt/ts_qt.py +++ b/tagstudio/src/qt/ts_qt.py @@ -83,7 +83,7 @@ def open_file(path: str, file_manager: bool = False): command_args = [path] if file_manager: # will reveal in Finder - command_args = command_args.append("-R") + command_args.append("-R") else: if file_manager: command_name = "dbus-send"