3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00

pylink-contribdl: link to contrib modules list if no argument is given

This commit is contained in:
James Lu 2016-12-05 00:45:53 -08:00
parent 3f4bf72248
commit 664bd3a89f

View File

@ -21,6 +21,13 @@ if __name__ == '__main__':
parser.add_argument('--version', '-v', nargs='?', help='specifies the tag (version) to download from',
default='master')
parser.add_argument('--yes', '-y', action='store_true', help='skip yes/no confirmations')
if len(sys.argv) < 2:
parser.print_help()
print()
print('For a list of available contrib modules, see %s' % BASE_URL)
sys.exit(1)
args = parser.parse_args()
print('This will download the following URLs:')