Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Adding support to utf-8
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarFrias committed Dec 12, 2012
1 parent 9f2ed4f commit 7a72e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octogit/core.py
Expand Up @@ -220,7 +220,7 @@ def get_single_issue(user, repo, number):
width = [[colored.yellow('#'+str(issue['number'])), 5],]
width.append([colored.red('('+ issue['user']['login']+')'), 15])
puts(columns(*width))
description = description_clean(issue['body'])
description = description_clean(issue['body'].encode('utf-8'))
puts(description)


Expand Down

0 comments on commit 7a72e13

Please sign in to comment.