Made a proper Config object
[zeroinstall/zeroinstall-afb.git] / zeroinstall / cmd / remove_feed.py
blob12b1c5352233f24ef0796025a7690fd4fc7bda5d
1 """
2 The B{0install remove-feed} command-line interface.
3 """
5 # Copyright (C) 2011, Thomas Leonard
6 # See the README file for details, or visit http://0install.net.
8 syntax = "FEED"
10 from zeroinstall.cmd import add_feed
12 add_options = add_feed.add_options
14 def handle(config, options, args):
15 return add_feed.handle(config, options, args, add_ok = False, remove_ok = True)