summaryrefslogtreecommitdiff
path: root/examples/gio
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gio')
-rw-r--r--examples/gio/directory-async.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gio/directory-async.py b/examples/gio/directory-async.py
index 8962c5a3..eaec2a85 100644
--- a/examples/gio/directory-async.py
+++ b/examples/gio/directory-async.py
@@ -7,7 +7,7 @@ def callback(gfile, result):
loop.quit()
gfile = gio.File("/")
-gfile.enumerate_children_async("standard::*", callback)
+gfile.enumerate_children_async("standard::name", callback)
loop = gobject.MainLoop()
loop.run()