From 681696846a98a4974932974f7c78a5008204302b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 30 Jun 2013 18:56:03 -0400 Subject: [PATCH] Styling: semicolon --- library/system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/setup b/library/system/setup index 5e8b4e6b69a..db48891fe82 100644 --- a/library/system/setup +++ b/library/system/setup @@ -1181,7 +1181,7 @@ class HPUX(Hardware): rc, out, err = module.run_command("/usr/contrib/bin/machinfo |grep Intel |cut -d' ' -f4-") self.facts['processor'] = out.strip() else: - rc, out, err = module.run_command("/usr/contrib/bin/machinfo |egrep 'socket[s]?$' | tail -1"); + rc, out, err = module.run_command("/usr/contrib/bin/machinfo |egrep 'socket[s]?$' | tail -1") self.facts['processor_count'] = int(out.strip().split(" ")[0]) rc, out, err = module.run_command("/usr/contrib/bin/machinfo |grep -e '[0-9] core' |tail -1") self.facts['processor_cores'] = int(out.strip().split(" ")[0])