Skip to content

Commit 6596a85

Browse files
committed
Fixed a problem with the admin interface for the ietf.doc.DocHistory class.
- Legacy-Id: 8693
1 parent 50cb5f0 commit 6596a85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class DocHistoryAdmin(admin.ModelAdmin):
108108
raw_id_fields = ['doc', 'authors', 'related', 'group', 'shepherd', 'ad']
109109

110110
def state(self, instance):
111-
return self.get_state()
111+
return instance.get_state()
112112

113113
admin.site.register(DocHistory, DocHistoryAdmin)
114114

0 commit comments

Comments
 (0)