summaryrefslogtreecommitdiffstats
path: root/extra/source/wicd/wicd-1.7.0-fix_script_bug.diff
blob: dc3ace60e7937911d8aa4487a787f0c77e7ec6fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
revno: 553
committer: Andrew Psaltis <ampsaltis@gmail.com>
branch nick: 1.6
timestamp: Wed 2010-01-27 14:06:21 -0500
message:
  Fixed bug in script macro expansion.

=== modified file 'wicd/networking.py'
--- wicd/networking.py	2010-01-15 04:02:10 +0000
+++ wicd/networking.py	2010-01-27 19:06:21 +0000
@@ -215,8 +215,8 @@
         if self.pre_disconnect_script:
             print 'Running pre-disconnect script'
             misc.ExecuteScript(expand_script_macros(self.pre_disconnect_script,
-                                                    'pre-disconnection', (mac,
-                                                                          name)),
+                                                    'pre-disconnection',
+                                                    mac, name),
                                self.debug)
         iface.ReleaseDHCP()
         iface.SetAddress('0.0.0.0')
@@ -229,7 +229,7 @@
             print 'Running post-disconnect script'
             misc.ExecuteScript(expand_script_macros(self.post_disconnect_script,
                                                     'post-disconnection',
-                                                   (mac, name)),
+                                                   mac, name),
                                self.debug)
         
     def ReleaseDHCP(self):