From 9669767847c4bd414f15fadf3668c46d72b9faaf Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Wed, 30 Jan 2013 12:25:19 +0100 Subject: Fix PEP8 error in oslo-rootwrap Fix a PEP8 error uncovered during the cinder import of the rootwrap module. A bit weird oslo's own tests didn't catch it. Change-Id: Ib107023dd6e4178dd51b358cf9374e7a8468d1bf --- bin/oslo-rootwrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/oslo-rootwrap b/bin/oslo-rootwrap index 12b2379..4f5f33b 100755 --- a/bin/oslo-rootwrap +++ b/bin/oslo-rootwrap @@ -105,8 +105,8 @@ if __name__ == '__main__': exec_dirs=config.exec_dirs) if config.use_syslog: logging.info("(%s > %s) Executing %s (filter match = %s)" % ( - os.getlogin(), pwd.getpwuid(os.getuid())[0], - command, filtermatch.name)) + os.getlogin(), pwd.getpwuid(os.getuid())[0], + command, filtermatch.name)) obj = subprocess.Popen(command, stdin=sys.stdin, -- cgit