Skip to content

Commit

Permalink
Merge pull request #1990 from antgonza/fix-1645
Browse files Browse the repository at this point in the history
fix #1645
  • Loading branch information
ElDeveloper committed Nov 7, 2016
2 parents c8fa007 + 5b12244 commit b937dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiita_pet/handlers/analysis_handlers.py
Expand Up @@ -264,7 +264,7 @@ def get(self):
def post(self):
analysis_id = int(self.get_argument('analysis_id'))
analysis = Analysis(analysis_id)
analysis_name = analysis.name
analysis_name = analysis.name.decode('utf-8')

check_analysis_access(self.current_user, analysis)

Expand Down

0 comments on commit b937dea

Please sign in to comment.