From 8920a3006eb9e3d2f9c65642949e43519661c946 2016-03-10 17:07:28 From: Ivan Valdez Date: 2016-03-10 17:07:28 Subject: [PATCH] Bug found: os.path.isdir(figpath) is not working --- diff --git a/schainpy/gui/viewcontroller/basicwindow.py b/schainpy/gui/viewcontroller/basicwindow.py index 95d0871..39e0205 100644 --- a/schainpy/gui/viewcontroller/basicwindow.py +++ b/schainpy/gui/viewcontroller/basicwindow.py @@ -1157,10 +1157,10 @@ class BasicWindow(QMainWindow, Ui_BasicWindow): self.console.append("Graphic path should be defined") return 0 - if os.path.isdir(figpath): - self.console.clear() - self.console.append("Graphic path does not exist, it has to be created") - return 0 +# if os.path.isdir(figpath): +# self.console.clear() +# self.console.append("Graphic path does not exist, it has to be created") +# return 0 self.console.clear()