~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to deluge/main.py

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-12-24 00:57:59 UTC
  • mfrom: (4.1.9 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091224005759-ifkuzevkdqqx4jle
Tags: 1.2.0~rc5-1
* New upstream version.
  - fix startup with fresh configs. (Closes: #560384)
* debian/control: drop useless dependencies on dbus for deluge-gtk.
* fix_manifest_in.patch: dropped, file MANIFEST.in has been deleted by
  upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        help="Port daemon will listen on", action="store", type="int")
136
136
    parser.add_option("-i", "--interface", dest="interface",
137
137
        help="Interface daemon will listen for bittorrent connections on, \
138
 
this should be an IP address",
 
138
this should be an IP address", metavar="IFACE",
139
139
        action="store", type="str")
140
140
    parser.add_option("-u", "--ui-interface", dest="ui_interface",
141
141
        help="Interface daemon will listen for UI connections on, this should be\
142
 
 an IP address", action="store", type="str")
 
142
 an IP address", metavar="IFACE", action="store", type="str")
143
143
    parser.add_option("-d", "--do-not-daemonize", dest="donot",
144
144
        help="Do not daemonize", action="store_true", default=False)
145
145
    parser.add_option("-c", "--config", dest="config",