Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/bpm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ def _calculate_bpm(self, file, settings):
if self._close:
return
file.metadata["bpm"] = str(round(calculated_bpm, 1))
file.update()

def _calculate_bpm_callback(self, file, result=None, error=None):
if not error:
file.update()
self.tagger.window.set_statusbar_message(
N_('BPM for "%(filename)s" successfully calculated.'),
{'filename': file.filename}
Expand Down