Skip to content
Snippets Groups Projects
Commit 33dc4176 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix syntax

parent 17d089d4
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ def main(scandir, dry_run): ...@@ -70,7 +70,7 @@ def main(scandir, dry_run):
for f in filenames: for f in filenames:
if f.startswith('repodata.json'): continue if f.startswith('repodata.json'): continue
m = package_regex.match(f) m = package_regex.match(f)
if is None: if m is None:
print('ignoring `%s\' (does not match)' % os.path.join(path, f)) print('ignoring `%s\' (does not match)' % os.path.join(path, f))
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment