Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JuttleLexer: Fix duplicate 'juttle' occurance in lexer aliases. #1606

Merged
merged 1 commit into from Nov 19, 2020

Commits on Nov 17, 2020

  1. JuttleLexer: Fix duplicate 'juttle' occurance in lexer aliases.

    The output from pygments.lexers.get_all_lexers() contains 'juttle'
    twice in the aliases section for the Juttle lexer entry.
    
    This could be reproduced using:
    
    >>> from pygments.lexers import get_all_lexers
    >>> lexers = get_all_lexers()
    >>> {alias[0]: alias[1] for alias in lexers}.get('Juttle')
    ('juttle', 'juttle')
    
    This patch fixes the duplicate entry and generates the associated
    _mapping.py file.
    
    Fixes: pygments#1604
    sumanthvrao committed Nov 17, 2020
    Copy the full SHA
    0655357 View commit details
    Browse the repository at this point in the history