[pitivi] Ignore PEP8 1.3's E128



commit 610bbf62fa50e33172476345a17393dc7581e1a4
Author: Jean-FranÃois Fortin Tam <nekohayo gmail com>
Date:   Mon Oct 22 11:56:23 2012 -0400

    Ignore PEP8 1.3's E128
    
    Given that we chose to ignore E501, it does not make sense to honor E128.
    E128 is too limiting and would also hurt readability and compactness.

 pre-commit.hook |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/pre-commit.hook b/pre-commit.hook
index a832496..986a35e 100755
--- a/pre-commit.hook
+++ b/pre-commit.hook
@@ -34,7 +34,7 @@ def main():
 
     tempdir = copy_files_to_tmp_dir(modified_files)
     try:
-        pep8_errors = system('pep8', '--repeat', '--ignore', 'E501', '.',
+        pep8_errors = system('pep8', '--repeat', '--ignore', 'E501,E128', '.',
             cwd=tempdir)
         if pep8_errors != "":
             output_message = "Your code is not fully pep8 compliant and contains"\



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]