Changeset 662:154ea1ea4f70
- Timestamp:
- 17/07/12 19:18:19 (10 months ago)
- Branch:
- default
- File:
-
- 1 edited
-
cyclope/themes.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cyclope/themes.py
r598 r662 40 40 for name in names: 41 41 filename = os.path.join(path, name, "__init__.py") 42 themes_[name] = imp.load_source(name, filename) 42 if os.path.exists(filename): 43 themes_[name] = imp.load_source(name, filename) 43 44 return themes_ 44 45
Note: See TracChangeset
for help on using the changeset viewer.

