1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-23 14:42:29 +01:00

Merged with experimental-nacl, r336.

This commit is contained in:
Andrew Psaltis
2009-05-19 21:22:14 -04:00
6 changed files with 26 additions and 17 deletions

View File

@@ -69,8 +69,8 @@ from optparse import OptionParser
#from grp import getgrgid
#from os import getgroups,system
import logging
import logging.handler
#import logging
#import logging.handler
CURSES_REVNO=wpath.curses_revision
@@ -1070,6 +1070,7 @@ def main():
urwid.set_encoding('utf8')
ui.run_wrapper(run)
@wrap_exceptions
def run():
global loop
loop = gobject.MainLoop()
@@ -1135,7 +1136,7 @@ if __name__ == '__main__':
parser.add_option("-r", "--raw-screen",action="store_const",const='raw'
,dest='screen',help="use urwid's raw screen controller (default)")
parser.add_option("-c", "--curses-screen",action="store_const",const='curses',dest='screen',help="use urwid's curses screen controller")
parser.add_option("-d", "--debug",action="store_true",
parser.add_option("-d", "--debug",action="store_true"
,dest='debug',help="enable logging of wicd-curses (currently does nothing)")
(options,args) = parser.parse_args()
main()