Removed duplicate check if instance.filename

This commit is contained in:
Wolf-Bastian Poettner 2020-02-01 13:54:15 +00:00
parent bcff75433c
commit ec3607cf1f

View File

@ -416,8 +416,7 @@ def update_filename(sender, instance, **kwargs):
new_filename = instance.generate_source_filename()
# If the filename is the same, then nothing needs to be done
if instance.filename is None or \
instance.filename == new_filename:
if instance.filename == new_filename:
return
# Check if filename needs changing