Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Fix source_path - it is a method
Browse files Browse the repository at this point in the history
  • Loading branch information
jupierce committed Feb 27, 2020
1 parent a8f4f53 commit 2a60b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doozerlib/distgit.py
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@ def _merge_source(self):
self.source_url = convert_source_url_to_https(out)

# If this is a go project, parse the Godeps for points of interest
godeps_file = pathlib.Path(self.source_path, 'Godeps', 'Godeps.json')
godeps_file = pathlib.Path(self.source_path(), 'Godeps', 'Godeps.json')
if godeps_file.is_file():
try:
with open(str(godeps_file)) as f:
Expand Down

0 comments on commit 2a60b3f

Please sign in to comment.