Change regexp to named placeholders

Change-Id: Ib39c605c8071833a44de3398583f6160fec775c2
This commit is contained in:
Herman Narkaytis
2013-09-25 17:04:46 +04:00
parent 2ea04f368b
commit 8820e840cf
4 changed files with 16 additions and 35 deletions

View File

@@ -80,9 +80,9 @@ def process_repo(repo, runtime_storage_inst, record_processor_inst):
bp_iterator = lp.log(repo)
bp_iterator_typed = _record_typer(bp_iterator, 'bp')
processed_mail_iterator = record_processor_inst.process(
processed_bp_iterator = record_processor_inst.process(
bp_iterator_typed)
runtime_storage_inst.set_records(processed_mail_iterator)
runtime_storage_inst.set_records(processed_bp_iterator)
vcs_inst = vcs.get_vcs(repo, cfg.CONF.sources_root)
vcs_inst.fetch()