Files
galaxy/scripts/api/form_create_from_xml.py
T
Nicola Soranzo 21b44bf348 Fix all E201 and E202 style errors
using the following command:
```
autopep8 -i -r --exclude $(sed -e 's|^|./|' -e 's|/$||' .ci/flake8_blacklist.txt | paste -sd,) --select E201,E202 .
```
2017-08-17 11:35:39 +01:00

18 lines
342 B
Python

#!/usr/bin/env python
from __future__ import print_function
import os
import sys
from common import submit
try:
data = {}
data['xml_text'] = open(sys.argv[3]).read()
except IndexError:
print('usage: %s key url form_xml_description_file' % os.path.basename(sys.argv[0]))
sys.exit(1)
submit(sys.argv[1], sys.argv[2], data)