summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorten Enemark Lund <melund@gmail.com>2018-08-21 13:05:32 +0200
committerMorten Enemark Lund <melund@gmail.com>2018-08-21 13:05:32 +0200
commit303a40b0d3f585bfd992208755c99f4c94055527 (patch)
treeee0ff90b0e2b19ee73e09c18525d848d7476577e
parentd85884690446646a59834a510157b4fffbb3ff9e (diff)
downloadpygments-303a40b0d3f585bfd992208755c99f4c94055527.tar.gz
Fix bug with leading # in color name
-rw-r--r--pygments/style.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/style.py b/pygments/style.py
index 26812f84..89766d8c 100644
--- a/pygments/style.py
+++ b/pygments/style.py
@@ -24,7 +24,7 @@ _ansimap = {
'ansicyan': '007f7f',
'ansigray': 'e5e5e5',
# normal
- '#ansibrightblack': '555555',
+ 'ansibrightblack': '555555',
'ansibrightred': 'ff0000',
'ansibrightgreen': '00ff00',
'ansibrightyellow': 'ffff00',