Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 33754a7

Browse files
committed
Fix makefile syntax errors.
I think this got introduced during some rebases ;__;.
1 parent e4e452c commit 33754a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ setup_subs :
1818

1919
update_default_schema :
2020
@echo "Making sure the default-schema.json file is up to date"
21-
python -c "import requests;/
21+
python -c "import requests;\
2222
from requests.compat import json as _json;\
23-
response = requests.get('https://api.plot.ly/v2/plot-schema?sha1';/
23+
response = requests.get('https://api.plot.ly/v2/plot-schema?sha1');\
2424
f = open('plotly/package_data/default-schema.json', 'w');\
2525
_json.dump(response.json()['schema'], f, indent=4,\
2626
sort_keys=True, separators=(',', ': '));\

0 commit comments

Comments
 (0)