aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/plugin.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-06 22:17:23 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-06 22:17:23 -0400
commitd3fbae175f0cf639cfe0957e216cccf9a95e009b (patch)
tree3bbc6cd633181d543f47c24406d6b7b58c77350c /libbe/plugin.py
parent64794faedd01c04cbb56ccbbe299d515d4edeefe (diff)
parente312d44cc6967e18b21955c6d9658d4c04259a92 (diff)
downloadbugseverywhere-d3fbae175f0cf639cfe0957e216cccf9a95e009b.tar.gz
Merge remaining fixes from Zwart
Diffstat (limited to 'libbe/plugin.py')
-rw-r--r--libbe/plugin.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/libbe/plugin.py b/libbe/plugin.py
index b175733..4016ca1 100644
--- a/libbe/plugin.py
+++ b/libbe/plugin.py
@@ -52,9 +52,7 @@ def get_plugin(prefix, name):
return my_import(prefix + "." + name)
return None
-plugin_path = sys.path[0]
-while not os.path.isfile(os.path.join(plugin_path, "libbe/plugin.py")):
- plugin_path = os.path.realpath(os.path.dirname(plugin_path))
+plugin_path = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
if plugin_path not in sys.path:
sys.path.append(plugin_path)
def _test():