Files
galaxy/scripts/api/display.py
T
Nicola Soranzo d85db9daa6 Use __file__ when adding paths to sys.path instead of os.getcwd() .
Also insert additional paths in position 1 unless strictly necessary.
2016-02-18 15:45:15 +00:00

20 lines
363 B
Python
Executable File

#!/usr/bin/env python
from __future__ import print_function
import os
import sys
from six.moves.urllib.error import URLError
from common import display
try:
display( *sys.argv[1:3] )
except TypeError as e:
print('usage: %s key url' % os.path.basename( sys.argv[0] ))
print(e)
sys.exit( 1 )
except URLError as e:
print(e)
sys.exit( 1 )