Skip to content

Commit

Permalink
[fix] no pygment cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Psycojoker committed Mar 19, 2016
1 parent 25e5f27 commit 1535638
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions redbaron/syntax_highlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ def python_html_highlight(string):

else:
def help_highlight(string):
return string
return string.encode("Utf-8")

def python_highlight(string):
return string
return string.encode("Utf-8")

def python_html_highlight(string):
return string
return string.encode("Utf-8")

0 comments on commit 1535638

Please sign in to comment.