From 158201fce4bc84680f979e8353ccb98225befc34 Mon Sep 17 00:00:00 2001 From: Miha <miha.fosnaric@fe.uni-lj.si> Date: Mon, 25 Mar 2019 09:04:05 +0000 Subject: [PATCH] analysis.py updejtan --- trisurf/trisurf.py | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/trisurf/trisurf.py b/trisurf/trisurf.py index a709d8a..3a052fc 100644 --- a/trisurf/trisurf.py +++ b/trisurf/trisurf.py @@ -20,6 +20,9 @@ TS_RUNNING=2 # process is running TS_COMPLETED=3 #simulation is completed +#namespace variable. Seems the best place to put the variable in :) +_analysis_list={} + class FileContent: ''' Class is helpful for reading and writting the specific files. @@ -528,8 +531,11 @@ for file in os.listdir(self.Dir.fullpath()): if file.endswith(".vtu"): flist.append(file) - flist.sort() - return(flist[-1]) + flist.sort() + if(len(flist)==0): + return(-1) + else: + return(flist[-1]) def __str__(self): if(self.getStatus()==0): -- Gitblit v1.9.3