From 7ad2b4ecf6d7b7319f1ee21e5bc150b224fd0e1f Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Thu, 24 May 2018 16:17:17 +0000
Subject: [PATCH] Change in data structure of trisurf-ng reflects here

---
 trisurf/trisurf.py |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/trisurf/trisurf.py b/trisurf/trisurf.py
index 9245fb3..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.
@@ -530,8 +533,8 @@
 				flist.append(file)
 		flist.sort()
 		if(len(flist)==0):
-			return -1		
-		else:
+			return(-1)
+		else:		
 			return(flist[-1])
 
 	def __str__(self):

--
Gitblit v1.9.3