File size: 287 Bytes
859a779 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/python3
#
# usage: ./utils/expand_info.py build/data/templates/Debian.info \
# /usr/share/distro-info/debian.csv
import sys
import aptsources.distinfo
for line in aptsources.distinfo._expand_template(sys.argv[1], sys.argv[2]):
print(line)
|