aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/plugin.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2005-12-22 02:59:52 -0500
committerAaron Bentley <aaron.bentley@utoronto.ca>2005-12-22 02:59:52 -0500
commite2965575907ff05a7249a3a213e0dce8a8217ef9 (patch)
tree64acf8b2bbc4a16daefb6ed2a98a897d503080b8 /libbe/plugin.py
parent2a0112fb5e5a3cb553a3ff0c7347247b2221b03f (diff)
downloadbugseverywhere-e2965575907ff05a7249a3a213e0dce8a8217ef9.tar.gz
Various Windows-related bugfixes
Diffstat (limited to 'libbe/plugin.py')
-rw-r--r--libbe/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/plugin.py b/libbe/plugin.py
index 234d221..b175733 100644
--- a/libbe/plugin.py
+++ b/libbe/plugin.py
@@ -46,7 +46,7 @@ def get_plugin(prefix, name):
>>> q.startswith("<module 'becommands.list' from ")
True
"""
- dirprefix = '/'.join(prefix.split('.'))
+ dirprefix = os.path.join(*prefix.split('.'))
command_path = os.path.join(plugin_path, dirprefix, name+".py")
if os.path.isfile(command_path):
return my_import(prefix + "." + name)