From fb9de000ed01a7b84fee24b702ea0802ba70ffe5 Mon Sep 17 00:00:00 2001 From: nojhan Date: Thu, 18 Aug 2016 21:11:33 +0200 Subject: [PATCH] Add a message for a common error fix #73 --- colout/colout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colout/colout.py b/colout/colout.py index c68c948..7d436db 100755 --- a/colout/colout.py +++ b/colout/colout.py @@ -1089,6 +1089,6 @@ if __name__ == "__main__": for var in context: print(var,context[var]) print(traceback.format_exc()) - logging.error("unknown color: %s" % e ) + logging.error("unknown color: %s (maybe you forgot to install python3-pygments?)" % e ) sys.exit( error_codes["UnknownColor"] )