From 84450d8424bed78a8ae5f8c7594c847aa361e6ca Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Tue, 28 Nov 2017 21:07:38 +0000 Subject: [PATCH] Fixes the bug when xk0 was rounded, whereas other variables were not when creating main directory --- trisurf/trisurf.py | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/trisurf/trisurf.py b/trisurf/trisurf.py index 3a052fc..b80ba9d 100644 --- a/trisurf/trisurf.py +++ b/trisurf/trisurf.py @@ -465,12 +465,7 @@ def setMaindir(self,prefix,variables): maindir="" for p,v in zip(prefix,variables): - if(v=="xk0"): - tv=str(round(float(self.Tape.config[v]))) - if sys.version_info<(3,0): - tv=str(int(float(self.Tape.config[v]))) - else: - tv=self.Tape.config[v] + tv=str(self.Tape.config[v]) maindir=maindir+p+tv self.maindir=maindir return -- Gitblit v1.9.3