galaxyproject / ephemeris

Library for managing Galaxy plugins - tools, index data, and workflows.
https://ephemeris.readthedocs.org/
Other
27 stars 38 forks source link

Fix default message check #135

Closed mvdbeek closed 5 years ago

mvdbeek commented 5 years ago

requests.exceptions.ConnectionError Exceptions don't have a body attribute, but bioblend's ConnectionError __str__ includes the body:

    def __str__(self):
        return "{0}: {1}".format(self.args[0], self.body)
mvdbeek commented 5 years ago

Thanks Enis!