From 843bb0cd53f6cc3caa9beeb8f07a374943d01889 Mon Sep 17 00:00:00 2001 From: Sushil Kumar Date: Wed, 20 May 2015 19:53:12 +0000 Subject: Fixes hacking rules This patchset helps reducing the ignored pep8 errors. Fixed some ignored hacking rules, as listed follows: - E111 indentation is not a multiple of four - E122 continuation line missing indentation or outdented - E123 closing bracket does not match indentation of opening bracket's line - E128 continuation line under-indented for visual indent - E251 unexpected spaces around keyword / parameter equals - E265 block comment should start with '# ' - E713 test for membership should be 'not in' - H105 Don't use author tags - H306 imports not in alphabetical order Change-Id: Iadf2af4f6ec90420153ad63b5a41650392ef2cbd --- contrib/trove-guestagent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/trove-guestagent b/contrib/trove-guestagent index c9c8ebb1..18d7e142 100755 --- a/contrib/trove-guestagent +++ b/contrib/trove-guestagent @@ -19,8 +19,8 @@ When the guest is moved out of the application, this will no longer be needed in the project.""" -import sys import os +import sys possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, -- cgit v1.2.1