From: gregnoel Date: Wed, 23 Sep 2009 21:13:24 +0000 (+0000) Subject: Use Glob() instead of glob.glob() X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fcaf5003d8165ce7ac347595053f7105dcb5de12;p=scons.git Use Glob() instead of glob.glob() git-svn-id: http://scons.tigris.org/svn/scons/trunk@4376 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/doc/user/tasks.in b/doc/user/tasks.in index 7be3562d..c51ad36e 100644 --- a/doc/user/tasks.in +++ b/doc/user/tasks.in @@ -35,8 +35,7 @@ tasks and how to implement them in &Python;. Wildcard globbing to create a list of filenames -import glob -files = glob.glob(wildcard) +files = Glob(wildcard) diff --git a/doc/user/tasks.xml b/doc/user/tasks.xml index 7be3562d..c51ad36e 100644 --- a/doc/user/tasks.xml +++ b/doc/user/tasks.xml @@ -35,8 +35,7 @@ tasks and how to implement them in &Python;. Wildcard globbing to create a list of filenames -import glob -files = glob.glob(wildcard) +files = Glob(wildcard)