Changeset 4392
- Timestamp:
- 10/06/08 11:57:20 (2 months ago)
- Files:
-
- graphvizplugin/0.11/graphviz/graphviz.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
graphvizplugin/0.11/graphviz/graphviz.py
r4391 r4392 52 52 """The directory that will be used to cache the generated images 53 53 (note that the directory must exist). 54 If not given as an absolute path, the path will be relative to 55 the Trac environment's directory. 54 56 """) 55 57 … … 325 327 return True, self.show_err(msg) 326 328 329 if not os.path.isabs(self.cache_dir): 330 self.cache_dir = os.path.join(self.env.path, self.cache_dir) 331 327 332 if not os.path.exists(self.cache_dir): 328 333 msg = "The cache_dir '%s' doesn't exist, please create it." % \
