Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lachhebo committed May 16, 2019
1 parent 41ff2cb commit 5defbad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,10 @@ def check_tag_equal_key_value(self,audio_key_exist,audio_tag_value, namefile,key
if key in dict_tag_changed:
if key_value != dict_tag_changed[key]:
return 0
elif not(audio_key_exist) or key_value != audio_tag_value:
else :
return 1

if not(audio_key_exist) or key_value != audio_tag_value:
return 0
else :
return 1
Expand Down

0 comments on commit 5defbad

Please sign in to comment.