commit/galaxy-central: greg: Make sure dir is not None when used to create a path - than Nicolas Lapalu.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/23f0c41b1cd7/ Changeset: 23f0c41b1cd7 User: greg Date: 2014-07-17 19:38:53 Summary: Make sure dir is not None when used to create a path - than Nicolas Lapalu. Affected #: 1 file diff -r 4d2e744f8efc73dc265c3d3bf33c4c2886888b7a -r 23f0c41b1cd7d7ef2087e1eec387cd3b116923fc lib/tool_shed/galaxy_install/install_manager.py --- a/lib/tool_shed/galaxy_install/install_manager.py +++ b/lib/tool_shed/galaxy_install/install_manager.py @@ -100,6 +100,8 @@ # We're in stage 2 of the installation process. The package has been down-loaded, so we can # now perform all of the actions defined for building it. for action_tup in filtered_actions: + if dir is None: + dir = '' current_dir = os.path.abspath( os.path.join( work_dir, dir ) ) with lcd( current_dir ): action_type, action_dict = action_tup 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