Skip to content

Commit

Permalink
Fix error on unicode related title
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes authored and rossjones committed Aug 21, 2012
1 parent c8ee3e1 commit fbb9160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/logic/action/create.py
Expand Up @@ -323,7 +323,7 @@ def related_create(context, data_dict):

context["related"] = related
context["id"] = related.id
log.debug('Created object %s' % str(related.title))
log.debug('Created object %s' % related.title)
return related_dict


Expand Down

0 comments on commit fbb9160

Please sign in to comment.