Changeset 2307 for gaphor/trunk/setup.py
- Timestamp:
- 05/20/08 17:37:48 (5 months ago)
- Files:
-
- gaphor/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/setup.py
r2306 r2307 110 110 eggs = pkg_resources.require("gaphor") 111 111 for egg in eggs: 112 if os.path.isdir(egg.location):113 sys.path.insert(0, egg.location)114 continue115 else:116 print 'Can only handle unpacked eggs.'112 if os.path.isdir(egg.location): 113 sys.path.insert(0, egg.location) 114 continue 115 else: 116 print 'Can only handle unpacked eggs.' 117 117 egg_names = [] 118 118 for egg in eggs:
