From 6b35d711a8d2eaa851abca81ced23bfd6059278b Mon Sep 17 00:00:00 2001 From: Kumsal Obuz Date: Mon, 13 Feb 2017 21:33:37 -0500 Subject: [PATCH] fixes output file path --- dataminer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataminer.py b/dataminer.py index 77c3b0c..c05004e 100644 --- a/dataminer.py +++ b/dataminer.py @@ -39,5 +39,5 @@ def get(name): if product["name"] == name: return product -with open("src/dataminer.json", "w") as file: +with open("src/data.json", "w") as file: json.dump(products, file, indent="\t")