Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 12004:1fe4702fe2df
debuginstall: report installpath
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 20 Aug 2010 15:31:05 -0500 |
parents | 52ec5c813723 |
children | ad787252fed6 |
comparison
equal
deleted
inserted
replaced
12003:a092b91a27c4 | 12004:1fe4702fe2df |
---|---|
1284 ui.write(" %s\n" % inst) | 1284 ui.write(" %s\n" % inst) |
1285 ui.write(_(" (check that your locale is properly set)\n")) | 1285 ui.write(_(" (check that your locale is properly set)\n")) |
1286 problems += 1 | 1286 problems += 1 |
1287 | 1287 |
1288 # compiled modules | 1288 # compiled modules |
1289 ui.status(_("Checking extensions...\n")) | 1289 ui.status(_("Checking installed modules (%s)...\n") |
1290 % os.path.dirname(__file__)) | |
1290 try: | 1291 try: |
1291 import bdiff, mpatch, base85 | 1292 import bdiff, mpatch, base85, osutil |
1292 except Exception, inst: | 1293 except Exception, inst: |
1293 ui.write(" %s\n" % inst) | 1294 ui.write(" %s\n" % inst) |
1294 ui.write(_(" One or more extensions could not be found")) | 1295 ui.write(_(" One or more extensions could not be found")) |
1295 ui.write(_(" (check that you compiled the extensions)\n")) | 1296 ui.write(_(" (check that you compiled the extensions)\n")) |
1296 problems += 1 | 1297 problems += 1 |