commit/galaxy-central: dan: Fix for exception logging in Datatypes registry.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/575625b28b03/ Changeset: 575625b28b03 User: dan Date: 2013-12-11 15:48:47 Summary: Fix for exception logging in Datatypes registry. Affected #: 1 file diff -r 9e30fa92a4ab5531a834a1e9015a4e6d19ef8861 -r 575625b28b035bb38e30c3ef994f0918844923e4 lib/galaxy/datatypes/registry.py --- a/lib/galaxy/datatypes/registry.py +++ b/lib/galaxy/datatypes/registry.py @@ -348,7 +348,7 @@ try: aclass = getattr( module, datatype_class_name )() except Exception, e: - self.log.exception( 'Error calling method %s from class %s: %s' ( str( datatype_class_name ), str( module ), str( e ) ) ) + self.log.exception( 'Error calling method %s from class %s: %s', str( datatype_class_name ), str( module ), str( e ) ) ok = False if ok: if deactivate: 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