From 38f3debf5568e8078dc41e2f6979c0dce6a19075 Mon Sep 17 00:00:00 2001 From: Paul Pogonyshev Date: Mon, 27 Apr 2009 21:33:25 +0300 Subject: Swap first two arguments of gio.File.query_info_async() Swap the arguments for consistency with other methods. Update documentation accordingly. Take care to keep the old code (i.e. with non-swapped calling arguments) working, but don't mention that anywhere. (Bug #580490.) --- tests/test_gio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_gio.py b/tests/test_gio.py index f94f2d0..7534ac0 100644 --- a/tests/test_gio.py +++ b/tests/test_gio.py @@ -221,7 +221,7 @@ class TestFile(unittest.TestCase): finally: loop.quit() - self.file.query_info_async(callback, "standard") + self.file.query_info_async("standard", callback) loop = glib.MainLoop() loop.run() -- cgit