1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/5e51b830c2b5/ changeset: 5e51b830c2b5 user: natefoo date: 2013-02-11 19:38:06 summary: Bug fix for new job features. affected #: 1 file diff -r f3ff8526fde6f0aa42733e92537a4268b7fabc30 -r 5e51b830c2b54a6e62ac3860b0e536205e7844d9 lib/galaxy/jobs/__init__.py --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -393,6 +393,8 @@ :returns: str -- A valid job handler ID. """ + if id_or_tag is None: + id_or_tag = self.default_handler_id return self.__get_single_item(self.handlers[id_or_tag]) def get_destination(self, id_or_tag): @@ -406,6 +408,8 @@ Destinations are deepcopied as they are expected to be passed in to job runners, which will modify them for persisting params set at runtime. """ + if id_or_tag is None: + id_or_tag = self.default_destination_id return copy.deepcopy(self.__get_single_item(self.destinations[id_or_tag])) def get_destinations(self, id_or_tag): 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.