##// END OF EJS Templates
run-tests: warn if --color=always and no pygments installed...
Martin von Zweigbergk -
r33567:d9677e2e default
parent child Browse files
Show More
@@ -413,6 +413,10 def parseargs(args, parser):
413 413 parser.error('--chg does not work when --with-hg is specified '
414 414 '(use --with-chg instead)')
415 415
416 if options.color == 'always' and not pygmentspresent:
417 sys.stderr.write('warning: --color=always ignored because '
418 'pygments is not installed\n')
419
416 420 global useipv6
417 421 if options.ipv6:
418 422 useipv6 = checksocketfamily('AF_INET6')
General Comments 0
You need to be logged in to leave comments. Login now