Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
call `scan_directory` with argument of type `bytes`
· c3d8787c
Ansgar
authored
Mar 14, 2019
c3d8787c
Merge branch 'master' into deploy
· 6e635347
Ansgar
authored
Mar 14, 2019
6e635347
Show whitespace changes
Inline
Side-by-side
scripts/debian/link_morgue
View file @
6e635347
...
...
@@ -112,7 +112,7 @@ def scan_directory(path: bytes):
def
process_directory
(
path
:
bytes
,
known_hashes
:
Hashes
,
base
:
bytes
)
->
None
:
os
.
chdir
(
path
)
for
fn
in
scan_directory
(
"
.
"
):
for
fn
in
scan_directory
(
b
"
.
"
):
process_file
(
fn
,
known_hashes
,
base
)
...
...