From 5d5e7b4ce10a376b576014a9a24dd69a0e798f67 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 6 Sep 2011 11:11:24 +0200 Subject: [PATCH] fix syntax error --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 834ec33..31b3a93 100755 --- a/build.py +++ b/build.py @@ -364,8 +364,8 @@ if __name__ == '__main__': if ret: raise Exception( '%s was not successfull, return code was %s ' % (' '.join(cmd), ret) - exit_error() ) + exit_error() cmd = ['grep-dctrl', '-n', '-s', 'Version', ''] grep_dctrl = subprocess.Popen( @@ -381,8 +381,8 @@ if __name__ == '__main__': if ret: raise Exception( '%s was not successfull, return code was %s ' % (' '.join(cmd), ret) - exit_error() ) + exit_error() version = grep_dctrl.stdout.read() version = version.strip() -- 2.39.5