3
0
mirror of https://git.launchpad.net/ubuntu-dev-tools synced 2025-03-13 08:01:09 +00:00
ubuntu-dev-tools/pull-debian-source

12 lines
284 B
Plaintext
Raw Normal View History

#!/usr/bin/python3
#
# pull-debian-source -- pull source package files for debian
# Basic usage: pull-debian-source <package name> [version|release]
#
# See pull-pkg
from ubuntutools.pullpkg import PullPkg
2017-05-01 00:20:03 +02:00
if __name__ == '__main__':
PullPkg.main(distro='debian', pull='source')