Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
matijakolaric committed Sep 23, 2019
1 parent 1ea30a3 commit 1ae4835
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions music_publisher/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,13 @@ class RecordingInline(admin.StackedInline):
verbose_name_plural = \
'Recordings (with recording artists and record labels)'
model = Recording
ordering = ('recording_title', 'version_title')
extra = 0

def complete_recording_title(selfSelf, obj):
def complete_recording_title(self, obj):
return obj.complete_recording_title

def complete_version_title(selfSelf, obj):
def complete_version_title(self, obj):
return obj.complete_version_title


Expand Down

0 comments on commit 1ae4835

Please sign in to comment.