Skip to content

Commit

Permalink
chore: Fix python version incompacibility
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Oct 11, 2020
1 parent 49f954e commit f900f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/ci/check-cyclic-dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
break
match = LOCAL_DEP_RE.search(line)
if match is not None:
dep_dir = (crate_dir / match[1]).resolve().relative_to(TOP_DIR)
dep_dir = (crate_dir / match.group(1)).resolve().relative_to(TOP_DIR)
crate_deps[crate_dir].add(dep_dir)
crate_deps_reverse[dep_dir].add(crate_dir)

Expand Down

0 comments on commit f900f8b

Please sign in to comment.