Skip to content

Commit

Permalink
Fix makefile syntax errors.
Browse files Browse the repository at this point in the history
I think this got introduced during some rebases ;__;.
  • Loading branch information
theengineear committed Jan 5, 2017
1 parent e4e452c commit 33754a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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=(',', ': '));\
Expand Down

0 comments on commit 33754a7

Please sign in to comment.