- fixed indentation issues

git-svn-id: file:///Users/arjan/backup/gaphor/gaphor/trunk@2307 a8418922-720d-0410-834f-a69b97ada669
This commit is contained in:
wrobell 2008-05-21 00:37:48 +00:00
parent b10b7104f8
commit ee6bb8be00

View File

@ -109,11 +109,11 @@ elif sys.platform == 'win32' and 'py2exe' in sys.argv:
import pkg_resources
eggs = pkg_resources.require("gaphor")
for egg in eggs:
if os.path.isdir(egg.location):
sys.path.insert(0, egg.location)
continue
else:
print 'Can only handle unpacked eggs.'
if os.path.isdir(egg.location):
sys.path.insert(0, egg.location)
continue
else:
print 'Can only handle unpacked eggs.'
egg_names = []
for egg in eggs:
egg_names.append(egg.project_name)