1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/da5a5077ef1e/ Changeset: da5a5077ef1e User: dannon Date: 2013-04-17 16:55:50 Summary: Strip whitespace from version_string_cmd, contributed by Peter Cock Affected #: 1 file diff -r 28edc7bec4048b5ef1564396ab3e6f91b03f62d6 -r da5a5077ef1ebffa9e0ad9039ca4463298815de1 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -1094,7 +1094,7 @@ self.version_string_cmd = None version_cmd = root.find("version_command") if version_cmd is not None: - self.version_string_cmd = version_cmd.text + self.version_string_cmd = version_cmd.text.strip() version_cmd_interpreter = version_cmd.get( "interpreter", None ) if version_cmd_interpreter: executable = self.version_string_cmd.split()[0] 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.