Skip to content

Commit

Permalink
Ensure all lexer attributes are Arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Jun 19, 2011
1 parent 909c03f commit c35519c
Show file tree
Hide file tree
Showing 2 changed files with 618 additions and 618 deletions.
6 changes: 3 additions & 3 deletions bin/pygments-lexers
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ for name, aliases, filenames, mimetypes in get_all_lexers():

print " name: %s" % name

print " aliases:"
print " aliases: !ruby/array"
for alias in aliases:
print " - %s" % alias

print " filenames:"
print " filenames: !ruby/array"
for filename in filenames:
print " - %s" % filename

print " mimetypes:"
print " mimetypes: !ruby/array"
for mimetype in mimetypes:
print " - %s" % mimetype
Loading

0 comments on commit c35519c

Please sign in to comment.