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

[Git][ftp-team/dak][deploy] 2 commits: call `scan_directory` with argument of type `bytes`



Title: GitLab

Ansgar pushed to branch deploy at Debian FTP Team / dak

Commits:

1 changed file:

Changes:

  • scripts/debian/link_morgue
    ... ... @@ -112,7 +112,7 @@ def scan_directory(path: bytes):
    112 112
     
    
    113 113
     def process_directory(path: bytes, known_hashes: Hashes, base: bytes) -> None:
    
    114 114
         os.chdir(path)
    
    115
    -    for fn in scan_directory("."):
    
    115
    +    for fn in scan_directory(b"."):
    
    116 116
             process_file(fn, known_hashes, base)
    
    117 117
     
    
    118 118
     
    


  • Reply to: