Corrected the change to the plug-in installation code.

Fri, 23 Aug 2013 09:49:07 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 23 Aug 2013 09:49:07 +0200
changeset 2856
a07f9346e209
parent 2854
2de1955c6391
child 2859
4c11116fe511

Corrected the change to the plug-in installation code.

PluginManager/PluginInstallDialog.py file | annotate | diff | comparison | revisions
--- a/PluginManager/PluginInstallDialog.py	Wed Aug 21 19:49:48 2013 +0200
+++ b/PluginManager/PluginInstallDialog.py	Fri Aug 23 09:49:07 2013 +0200
@@ -441,7 +441,8 @@
         
         # now compile the plugins
         if doCompile:
-            compileall.compile_dir(destination, quiet=True)
+            compileall.compile_dir(os.path.join(destination, packageName), quiet=True)
+            compileall.compile_file(os.path.join(destination, pluginFileName), quiet=True)
         
         if not self.__external:
             # now load and activate the plugin

eric ide

mercurial