Skip to content

Commit

Permalink
fix typo in elif:
Browse files Browse the repository at this point in the history
  • Loading branch information
yajrendrag committed Oct 6, 2024
1 parent 044c032 commit 7646a43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions source/rename_file/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

**<span style="color:#56adda">0.0.12</span>**
- fix typo in elif: clause

**<span style="color:#56adda">0.0.11</span>**
- fix error in channels test - should be int not str

Expand Down
2 changes: 1 addition & 1 deletion source/rename_file/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"on_postprocessor_task_results": 0
},
"tags": "rename, postprocessor",
"version": "0.0.11"
"version": "0.0.12"
}
2 changes: 1 addition & 1 deletion source/rename_file/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def append(data, settings, abspath, streams):
else:
if "(side)" in channel_layout:
channel_layout = channel_layout.replace("(side)","")
elif: channel_layout == "stereo":
elif channel_layout == "stereo":
channel_layout = "2.0"
else:
channel_layout = ''
Expand Down

0 comments on commit 7646a43

Please sign in to comment.