[1]
+def main(args): + if len(args) != 2: + sys.exit("Usage: autoppa-switch <software version> <distro release>") + version, ubuntu_release = args + autoppa_switch(".", version, ubuntu_release)
It'd be nice to use an OptionParser here so that --help and --version work. If you don't want to bother with it right now please file a bug to track the issue.
Thanks for adding this functionality! +1.
« Back to merge proposal
[1]
+def main(args):
+ if len(args) != 2:
+ sys.exit("Usage: autoppa-switch <software version> <distro release>")
+ version, ubuntu_release = args
+ autoppa_switch(".", version, ubuntu_release)
It'd be nice to use an OptionParser here so that --help and
--version work. If you don't want to bother with it right now
please file a bug to track the issue.
Thanks for adding this functionality! +1.