[hg] galaxy 1604: Fix get_bool in config
details: http://www.bx.psu.edu/hg/galaxy/rev/7a5d9759c702 changeset: 1604:7a5d9759c702 user: Nate Coraor <nate@bx.psu.edu> date: Tue Nov 04 14:00:30 2008 -0500 description: Fix get_bool in config 1 file(s) affected in this change: lib/galaxy/config.py diffs (12 lines): diff -r 85347b21a1b8 -r 7a5d9759c702 lib/galaxy/config.py --- a/lib/galaxy/config.py Tue Nov 04 13:20:39 2008 -0500 +++ b/lib/galaxy/config.py Tue Nov 04 14:00:30 2008 -0500 @@ -85,7 +85,7 @@ return self.config_dict.get( key, default ) def get_bool( self, key, default ): if key in self.config_dict: - return string_as_bool( key ) + return string_as_bool( self.config_dict[key] ) else: return default def check( self ):
participants (1)
-
Greg Von Kuster