diff options
Diffstat (limited to 'bin/just-mr.py')
-rwxr-xr-x | bin/just-mr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/just-mr.py b/bin/just-mr.py index 1599826c..c641426c 100755 --- a/bin/just-mr.py +++ b/bin/just-mr.py @@ -1035,7 +1035,7 @@ def main(): GIT_CHECKOUT_LOCATIONS_FILE = os.path.abspath(options.checkout_location) if GIT_CHECKOUT_LOCATIONS_FILE: - with open(options.checkout_location) as f: + with open(GIT_CHECKOUT_LOCATIONS_FILE) as f: global GIT_CHECKOUT_LOCATIONS GIT_CHECKOUT_LOCATIONS = json.load(f).get("checkouts", {}).get("git", {}) |