From f673833fe92038ab66deec0333a9cf888676839b Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Wed, 19 Sep 2007 21:01:06 +0000 Subject: [PATCH] proper path to try to fix windows bug #6 --- src/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins.py b/src/plugins.py index 5afe09c31..086879089 100644 --- a/src/plugins.py +++ b/src/plugins.py @@ -52,7 +52,7 @@ class PluginManager: for folder in self.plugin_dirs: print "Scanning plugin dir",folder for modname in os.listdir(folder): - path = folder+'/'+modname + path = os.path.join(folder, modname) if '__init__.py' in os.listdir(path): # Import the found module. Note that the last # parameter is important otherwise only the base