mirror of
https://github.com/status-im/github-oracle.git
synced 2026-08-31 03:41:16 +00:00
10 lines
218 B
Python
10 lines
218 B
Python
import os
|
|
start = ''
|
|
try:
|
|
start += os.environ['ARGN'] + ": "
|
|
for x in range(0, int(os.environ['ARGN'])):
|
|
start += os.environ['ARG'+`x`] + ","
|
|
print start
|
|
except KeyError:
|
|
print "ARGN undefined"
|