From 3ec25aea4b437db0d0910b4cb7110c8850d3b64b Mon Sep 17 00:00:00 2001 From: John Kacur Date: Tue, 8 May 2018 15:44:50 +0100 Subject: [PATCH 15/18] rteval: cyclictest.py: Fix spacing problems Some spacing problems got introduced with the last fix, possibly as a result of examining them with certain text editors Fix these Signed-off-by: John Kacur --- rteval/modules/measurement/cyclictest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rteval/modules/measurement/cyclictest.py b/rteval/modules/measurement/cyclictest.py index d920e4be6548..f6c6d1353fac 100644 --- a/rteval/modules/measurement/cyclictest.py +++ b/rteval/modules/measurement/cyclictest.py @@ -299,13 +299,13 @@ class Cyclictest(rtevalModulePrototype): fp.close() self.__cyclicoutput.seek(0) - try: + try: self.__cyclicprocess = subprocess.Popen(self.__cmd, stdout=self.__cyclicoutput, stderr=self.__nullfp, stdin=self.__nullfp) self.__started = True - except OSError: + except OSError: self.__started = False -- 2.14.3