Skip to content

Commit

Permalink
typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
yajrendrag committed Sep 30, 2024
1 parent a018c5c commit 80fa1c7
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.7</span>**
- fix typo in variable name

**<span style="color:#56adda">0.0.6</span>**
- fix replace function resolution
- provide for destination file change due to a remux or mover operation
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.6"
"version": "0.0.7"
}
2 changes: 1 addition & 1 deletion source/rename_file/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def on_postprocessor_task_results(data):

# correct for remuxed or moved files
if not os.path.isfile(abspath) and os.path.isfile(destfile):
abpspath = destfile
abspath = destfile

probe = Probe(logger, allowed_mimetypes=['video'])
if not probe.file(abspath):
Expand Down

0 comments on commit 80fa1c7

Please sign in to comment.