1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

Fixed bug where tray wouldn't load when it automatically opened the daemon

Fixed some typos
This commit is contained in:
imdano
2007-07-05 05:30:09 +00:00
parent 709efd2ac4
commit 7b541011b5
3 changed files with 7 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ def Run(cmd,include_std_error=False):
def PromptToStartDaemon():
gksudo_args = ['gksudo', '--message', 'Wicd needs to access your computer\'s network cards.','--','./daemon.py']
os.spawnvpe(os.P_WAIT, 'gksudo', gksudo_args, os.environ)
os.spawnvpe(os.P_NOWAIT, 'gksudo', gksudo_args, os.environ)
def RunRegex(regex,string):
m = regex.search( string )