Show More
@@ -1383,6 +1383,11 b' def debuginstall(ui, **opts):' | |||||
1383 | fm.condwrite(err, 'usernameerror', _("checking username...\n %s\n" |
|
1383 | fm.condwrite(err, 'usernameerror', _("checking username...\n %s\n" | |
1384 | " (specify a username in your configuration file)\n"), err) |
|
1384 | " (specify a username in your configuration file)\n"), err) | |
1385 |
|
1385 | |||
|
1386 | for name, mod in extensions.extensions(): | |||
|
1387 | handler = getattr(mod, 'debuginstall', None) | |||
|
1388 | if handler is not None: | |||
|
1389 | problems += handler(ui, fm) | |||
|
1390 | ||||
1386 | fm.condwrite(not problems, '', |
|
1391 | fm.condwrite(not problems, '', | |
1387 | _("no problems detected\n")) |
|
1392 | _("no problems detected\n")) | |
1388 | if not problems: |
|
1393 | if not problems: |
General Comments 0
You need to be logged in to leave comments.
Login now