Changeset 7126
- Timestamp:
- 05/09/08 13:01:48 (3 months ago)
- Files:
-
- trunk/openlayers/tools/exampleparser.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/tools/exampleparser.py
r7111 r7126 28 28 def getListOfExamples(relPath): 29 29 """ 30 returns list of .html filenames within a given path 30 returns list of .html filenames within a given path - excludes example-list.html 31 31 """ 32 32 examples = os.listdir(relPath) 33 examples = [example for example in examples if example.endswith('.html') ]33 examples = [example for example in examples if example.endswith('.html') and example != "example-list.html"] 34 34 return examples 35 35
