commit/galaxy-central: carlfeberhard: Plugin framework: fix relative path parsing in PluginManager
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/40fb094fe82b/ Changeset: 40fb094fe82b User: carlfeberhard Date: 2013-09-18 20:49:58 Summary: Plugin framework: fix relative path parsing in PluginManager Affected #: 1 file diff -r eb69169a04efb1fba610b943fd38a8ceb991d315 -r 40fb094fe82b6518a8138311a6427c539c6be8f8 lib/galaxy/web/base/pluginframework.py --- a/lib/galaxy/web/base/pluginframework.py +++ b/lib/galaxy/web/base/pluginframework.py @@ -93,7 +93,7 @@ for directory in util.listify( directories_setting ): directory = directory.strip() - if directory.startswith( '/' ): + if not directory.startswith( '/' ): directory = os.path.join( galaxy_root, directory ) if not os.path.exists( directory ): log.warn( '%s, directory not found: %s', self, directory ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org