From 78f191dd5b6ff348fb3557f0373cac1577c60ec9 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sun, 26 Dec 2021 10:51:53 -0700 Subject: [PATCH] gui.py: Remove pathlib import --- gui/gui_main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gui/gui_main.py b/gui/gui_main.py index f40881dc2..ffede67b4 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -5,7 +5,6 @@ import wx import sys import webbrowser -from pathlib import Path import subprocess import time @@ -1294,7 +1293,7 @@ class wx_python_gui: cim_start = subprocess.Popen( [self.constants.oclp_helper_path, "/bin/sh", self.constants.installer_sh_path], stdout=subprocess.PIPE, - # stderr=subprocess.STDOUT + stderr=subprocess.STDOUT ) wx.GetApp().Yield()