diff options
Diffstat (limited to 'doc/user/tasks.xml')
-rw-r--r-- | doc/user/tasks.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/user/tasks.xml b/doc/user/tasks.xml index 7be3562..c51ad36 100644 --- a/doc/user/tasks.xml +++ b/doc/user/tasks.xml @@ -35,8 +35,7 @@ tasks and how to implement them in &Python;. <example> <title>Wildcard globbing to create a list of filenames</title> <programlisting> -import glob -files = glob.glob(wildcard) +files = Glob(wildcard) </programlisting> </example> |