Skip to content

Commit 3bb83a6

Browse files
committed
Fix bug calling a self method. See ietf-tools#618
- Legacy-Id: 2891
1 parent 917d287 commit 3bb83a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/submit/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def create_hash(self):
5353

5454
def get_hash(self):
5555
if not self.submission_hash:
56-
create_hash()
56+
self.create_hash()
5757
self.save()
5858
return self.submission_hash
5959

0 commit comments

Comments
 (0)