You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def get_plugin_path(name):
plugin_path = os.path.join(env.localroot, 'plugins', name)
assert os.path.isdir(plugin_path), \
"The requested plugin %s does not exist (%s) !!!\n \
you can install it by :\n\t \
fab localhost install_plugin:%s" % (name, plugin_path, name)
return plugin_path
now, if the requested plugin does not exist, you will get an Error
AssertionError: The requested plugin Fab123 does not exist !!!
you can install it by :
fab localhost install_plugin:Fab123
No description provided.
The text was updated successfully, but these errors were encountered: