details: http://www.bx.psu.edu/hg/galaxy/rev/f77f039c3697 changeset: 2967:f77f039c3697 user: Nate Coraor <nate@bx.psu.edu> date: Wed Nov 04 16:23:23 2009 -0500 description: Fix for printing EggNotFetchable exceptions diffstat: lib/galaxy/eggs/__init__.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diffs (12 lines): diff -r e49c58ca5f17 -r f77f039c3697 lib/galaxy/eggs/__init__.py --- a/lib/galaxy/eggs/__init__.py Wed Nov 04 13:58:50 2009 -0500 +++ b/lib/galaxy/eggs/__init__.py Wed Nov 04 16:23:23 2009 -0500 @@ -20,6 +20,8 @@ self.eggs = eggs else: self.eggs = [ eggs ] + def __str__( self ): + return ' '.join( self.eggs ) class PlatformNotSupported( Exception ): pass