Changeset 1604:7a5d9759c702

Show
Ignore:
Timestamp:
11/04/08 14:00:30 (2 months ago)
Author:
Nate Coraor <nate@bx.psu.edu>
branch:
default
Message:

Fix get_bool in config

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lib/galaxy/config.py

    r1591 r1604  
    8686    def get_bool( self, key, default ): 
    8787        if key in self.config_dict: 
    88             return string_as_bool( key
     88            return string_as_bool( self.config_dict[key]
    8989        else: 
    9090            return default