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

[Git][ftp-team/dak][master] 2 commits: Fix E271: Multiple spaces after keyword



Title: GitLab

Joerg Jaspert pushed to branch master at Debian FTP Team / dak

Commits:

3 changed files:

Changes:

  • dak/cruft_report.py
    ... ... @@ -590,7 +590,7 @@ def main():
    590 590
                     source_version = Sources.section.find('Version')
    
    591 591
                     architecture = Sources.section.find('Architecture')
    
    592 592
                     binaries = Sources.section.find('Binary')
    
    593
    -                binaries_list = [ i.strip() for i in  binaries.split(',') ]
    
    593
    +                binaries_list = [ i.strip() for i in binaries.split(',') ]
    
    594 594
     
    
    595 595
                     if "bnb" in checks:
    
    596 596
                         # Check for binaries not built on any architecture.
    

  • dak/show_deferred.py
    ... ... @@ -44,7 +44,7 @@ def html_escape(s):
    44 44
     ################################################################################
    
    45 45
     
    
    46 46
     def header():
    
    47
    -    return  """<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    
    47
    +    return """<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    
    48 48
             <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    
    49 49
             <title>Deferred uploads to Debian</title>
    
    50 50
             <link type="text/css" rel="stylesheet" href="">
    

  • setup.cfg
    ... ... @@ -31,7 +31,6 @@ ignore =
    31 31
      E261,
    
    32 32
      E265,
    
    33 33
      E266,
    
    34
    - E271,
    
    35 34
      E272,
    
    36 35
      E301,
    
    37 36
      E303,
    


  • Reply to: