Skip to content

Commit

Permalink
fix(AscLexer): mimetypes stray trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed May 17, 2021
1 parent dc03ea1 commit 059c340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygments/lexers/asc.py
Expand Up @@ -28,7 +28,7 @@ class AscLexer(RegexLexer):
'*.pem', # X.509; *.cer, *.crt, *.csr, and key etc too, but those can be binary
'id_dsa', 'id_ecdsa', 'id_ecdsa_sk', 'id_ed25519', 'id_ed25519_sk', 'id_rsa', # SSH private keys
]
mimetypes = ['application/pgp-keys', 'application/pgp-encrypted', 'application/pgp-signature'],
mimetypes = ['application/pgp-keys', 'application/pgp-encrypted', 'application/pgp-signature']

flags = re.MULTILINE

Expand Down

0 comments on commit 059c340

Please sign in to comment.