mercurial/commands.py
changeset 15223 fc035e5370ca
parent 15221 269374b89b74
child 15232 5d9a5b919863
equal deleted inserted replaced
15222:73015301db86 15223:fc035e5370ca
  1850     # compiled modules
  1850     # compiled modules
  1851     ui.status(_("Checking installed modules (%s)...\n")
  1851     ui.status(_("Checking installed modules (%s)...\n")
  1852               % os.path.dirname(__file__))
  1852               % os.path.dirname(__file__))
  1853     try:
  1853     try:
  1854         import bdiff, mpatch, base85, osutil
  1854         import bdiff, mpatch, base85, osutil
       
  1855         dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes
  1855     except Exception, inst:
  1856     except Exception, inst:
  1856         ui.write(" %s\n" % inst)
  1857         ui.write(" %s\n" % inst)
  1857         ui.write(_(" One or more extensions could not be found"))
  1858         ui.write(_(" One or more extensions could not be found"))
  1858         ui.write(_(" (check that you compiled the extensions)\n"))
  1859         ui.write(_(" (check that you compiled the extensions)\n"))
  1859         problems += 1
  1860         problems += 1