Skip to content

Commit

Permalink
Versions: Fix getting dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jun 10, 2024
1 parent 99293cd commit d58bf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/versions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def _get_dependencies(

index = -1
for i, line in enumerate(lines):
if "packageFiles" in line and line.strip().endswith(" "):
if '"packageFiles": {' in line and line.strip().startswith(" "):
index = i
break
if index != -1:
Expand Down

0 comments on commit d58bf14

Please sign in to comment.