From 4fd8a16e6cd618ed61c9e312d5e3827bb4d15b2f Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 8 Sep 2011 14:52:42 +0200 Subject: [PATCH] use *args not args :-) Signed-off-by: Nico Schottelius --- bin/cdist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cdist b/bin/cdist index 323d2a96..7059f73b 100755 --- a/bin/cdist +++ b/bin/cdist @@ -93,8 +93,8 @@ class Cdist: print("I should cleanup " + self.temp_dir) # shutil.rmtree(self.temp_dir) - def exit_error(self,*args): - log.error(args) + def exit_error(self, *args): + log.error(*args) sys.exit(1) def shell_run_or_debug_fail(self, script, *args, **kargs):