aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/auth.py
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2010-11-29 20:11:54 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2010-12-01 12:10:49 -0700
commit4fbba2d523ba65b2dad15cf264eb168157cf0f15 (patch)
treeddecabd4ca306f59bd0456ee4b92ff9a7706ea03 /examples/data/scripts/auth.py
parent081c95aee6d6490fdaf67e22c3d6245009462908 (diff)
remove the positional arguments entirely (breaks backward compatibility)
Diffstat (limited to 'examples/data/scripts/auth.py')
-rwxr-xr-xexamples/data/scripts/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/data/scripts/auth.py b/examples/data/scripts/auth.py
index 9c1b4fc..592a2c6 100755
--- a/examples/data/scripts/auth.py
+++ b/examples/data/scripts/auth.py
@@ -46,7 +46,7 @@ def getText(authInfo, authHost, authRealm):
return rv, output
if __name__ == '__main__':
- rv, output = getText(sys.argv[8], sys.argv[9], sys.argv[10])
+ rv, output = getText(sys.argv[1], sys.argv[2], sys.argv[3])
if (rv == gtk.RESPONSE_OK):
print output;
else: