~camptocamp/anybox.buildbot.openerp/trunk-fix_994523-afe

« back to all changes in this revision

Viewing changes to anybox/buildbot/openerp/build_utils/analyze_oerp_tests.py

  • Committer: alexandre.fayolle at camptocamp
  • Date: 2014-02-21 17:05:08 UTC
  • Revision ID: alexandre.fayolle@camptocamp.com-20140221170508-059vz020g8hyaq0c
fix typo

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    stdout, stderr = pipe.communicate()
22
22
    modules = set(m.strip()
23
23
                  for m in stdout.splitlines()[2:]
24
 
                  if m.strip() and not m.strip.startswith('('))
 
24
                  if m.strip() and not m.strip().startswith('('))
25
25
    return modules
26
26
 
27
27
FAILURE_REGEXPS = {