Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakosexy committed Aug 25, 2018
1 parent 597acd4 commit 09e8196
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions music_publisher/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,8 @@ def json(self):
data = OrderedDict()
if self.duration:
data['first_release_duration'] = self.duration.strftime('%H%M%S')
data['isrc'] = self.isrc
data['first_release_catalog_number'] = self.catalog_number
data['first_release_catalog_number'] = self.catalog_number
data['isrc'] = self.isrc or ''
data['first_release_catalog_number'] = self.catalog_number or ''
if self.album_cd:
if self.album_cd.release_date:
data['first_release_date'] = (
Expand Down

0 comments on commit 09e8196

Please sign in to comment.