Skip to content

Commit

Permalink
bug lp:865448
Browse files Browse the repository at this point in the history
change abspath to dirname in controllers/version.py to correct path problems.

Change-Id: Ia483d4766652c6b46dadf7d97bc7dfceca1e4b9c
  • Loading branch information
jcannava authored and dolph committed Nov 4, 2011
1 parent 8cf9184 commit cd0186e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions keystone/controllers/version.py
Expand Up @@ -3,8 +3,7 @@

# If ../../keystone/__init__.py exists, add ../ to Python search path, so that
# it will override what happens to be installed in /usr/(local/)lib/python...
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(__file__),
os.pardir,
possible_topdir = os.path.normpath(os.path.join(os.path.dirname(__file__),
os.pardir,
os.pardir))

Expand Down

0 comments on commit cd0186e

Please sign in to comment.