diff options
author | Greg Noel <GregNoel@tigris.org> | 2009-09-23 21:13:24 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2009-09-23 21:13:24 (GMT) |
commit | f0958234029096d869cc62d4ef54bab17ee179ec (patch) | |
tree | b2340229553bb04b7b0db93436f8e49a4626cbae /doc | |
parent | 73ab59f96076acaa84e4f9dc7a0f4bb27aa4322b (diff) | |
download | SCons-f0958234029096d869cc62d4ef54bab17ee179ec.zip SCons-f0958234029096d869cc62d4ef54bab17ee179ec.tar.gz SCons-f0958234029096d869cc62d4ef54bab17ee179ec.tar.bz2 |
Use Glob() instead of glob.glob()
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/tasks.in | 3 | ||||
-rw-r--r-- | doc/user/tasks.xml | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/doc/user/tasks.in b/doc/user/tasks.in index 7be3562..c51ad36 100644 --- a/doc/user/tasks.in +++ b/doc/user/tasks.in @@ -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> 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> |