Merge branch 'develop' of https://github.com/wez3/domoboard into develop

This commit is contained in:
Sander Schins 2017-01-21 03:13:48 +01:00
commit 72c2f35707
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def loadPlugins():
plugin[name] = imp.load_source(name, plugin_dir + i)
plugin[name].init()
except ImportError as msg:
sys.exit("Error occured during loading imports for the plugin {}: {}".format(name, msg))
sys.exit("Error occured during loading imports for the plugin {}: {}. Install it with 'easy_install {}' or 'pip install {}'".format(name, msg, msg , msg))
return plugin
def getPluginDict():