From a4aeadc9aafd62e8b5bb49a3cb887e3cbeecebb1 Mon Sep 17 00:00:00 2001 From: Nick Walker Date: Tue, 12 Nov 2024 02:28:50 -0800 Subject: [PATCH] Fix routes helper usage --- _bin/route-db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_bin/route-db.py b/_bin/route-db.py index b7c3921..dd9568b 100644 --- a/_bin/route-db.py +++ b/_bin/route-db.py @@ -164,7 +164,7 @@ def main(): f.write('\n') # write json version - json_path = os.path.join(rcr.ROUTES_AND_LOCS, 'routes.json') + json_path = os.path.join(rcr.ROUTES, 'routes.json') with open(json_path, 'w') as f: json.dump(routes, f, indent=2)