Changeset 3186


Ignore:
Timestamp:
19 Feb 2008, 16:19:44 (17 years ago)
Author:
joachim
Message:

now the sex should be ok.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/WAeUPTool.py

    r3185 r3186  
    14831483                                                                           ds.getErrorMapping(k)))
    14841484                    error_count += 1
    1485             if item.has_key('sex'):
    1486                 if item['sex']:
    1487                     item['sex'] = 'F'
    1488                 else:
    1489                     item['sex'] = 'M'
    14901485            if error_string:
    14911486                error = error_string
     
    15041499                error = results[1]
    15051500                mapping = results[2]
     1501            if mapping.has_key('sex'):
     1502                #import pdb;pdb.set_trace()
     1503                if mapping['sex']:
     1504                    mapping['sex'] = 'F'
     1505                else:
     1506                    mapping['sex'] = 'M'
    15061507            data_string = ", ".join("%s: %s" % (k,v) for k,v in mapping.items())
    15071508            info['error'] = error
Note: See TracChangeset for help on using the changeset viewer.