From 33754a7fc8020d428a994ec8e15f5411b4a87245 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Thu, 5 Jan 2017 09:42:15 -0800 Subject: [PATCH] Fix makefile syntax errors. I think this got introduced during some rebases ;__;. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 455b9582246..ca75f11480c 100644 --- a/makefile +++ b/makefile @@ -18,9 +18,9 @@ setup_subs : update_default_schema : @echo "Making sure the default-schema.json file is up to date" - python -c "import requests;/ + python -c "import requests;\ from requests.compat import json as _json;\ - response = requests.get('https://api.plot.ly/v2/plot-schema?sha1';/ + response = requests.get('https://api.plot.ly/v2/plot-schema?sha1');\ f = open('plotly/package_data/default-schema.json', 'w');\ _json.dump(response.json()['schema'], f, indent=4,\ sort_keys=True, separators=(',', ': '));\