Skip to content

Commit 4576d48

Browse files
ericholscheragjohnson
authored andcommitted
Fix runtime error on python 3 (#3072)
1 parent 34d2d63 commit 4576d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/comments/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class DocumentNodeAdmin(admin.ModelAdmin):
1313
search_fields = ('id', 'document')
1414
list_filter = ('project__name',)
1515
raw_id_fields = ('project', 'version')
16-
list_display = ('__unicode__', 'latest_hash', 'latest_commit')
16+
list_display = ('latest_hash', 'latest_commit')
1717
inlines = (SnapshotAdmin,)
1818

1919

0 commit comments

Comments
 (0)