artemis.py
changeset 18 57157f212cde
parent 17 f70d7e98eb21
child 19 c79f89b04676
equal deleted inserted replaced
17:f70d7e98eb21 18:57157f212cde
    38         if not config.has_section(opts['filter']):
    38         if not config.has_section(opts['filter']):
    39             ui.warning('No filter %s defined\n', opts['filter'])
    39             ui.warning('No filter %s defined\n', opts['filter'])
    40         else:
    40         else:
    41             properties += config.items(opts['filter'])
    41             properties += config.items(opts['filter'])
    42 
    42 
    43     _get_properties(opts['property'])
    43     properties += _get_properties(opts['property'])
    44 
    44 
    45     for issue in issues:
    45     for issue in issues:
    46         mbox = mailbox.mbox(issue)
    46         mbox = mailbox.mbox(issue)
    47         property_match = True
    47         property_match = True
    48         for property,value in properties:
    48         for property,value in properties: