mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
20 lines
374 B
Python
Executable File
20 lines
374 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 # noqa: I100,I202
|
|
|
|
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)
|