Commit 0f5243f3 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Geometry, checker: Minor change.

No related merge requests found
Pipeline #54344 passed with stages
in 3 minutes and 20 seconds
Showing with 2 additions and 2 deletions
+2 -2
...@@ -79,5 +79,5 @@ class TabWorker(QObject): ...@@ -79,5 +79,5 @@ class TabWorker(QObject):
self._checker_q.put(checker) self._checker_q.put(checker)
time.sleep(5) time.sleep(5)
else: else:
checker._run(self._study) checker.run(self._study)
self.signalStatus.emit("progress") self.signalStatus.emit("progress")
...@@ -613,7 +613,7 @@ class GeometryWindow(PamhyrWindow): ...@@ -613,7 +613,7 @@ class GeometryWindow(PamhyrWindow):
options=options options=options
) )
if filename != '': if filename != '' and filename is not None:
self._export_to_file_st(filename) self._export_to_file_st(filename)
def _export_to_file_st(self, filename): def _export_to_file_st(self, filename):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment