mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Merge pull request #2998 from pypeclub/bugfix/extra_dot_in_new_workfile
Fix - remove doubled dot in workfile created from template
This commit is contained in:
commit
b5ef76d845
1 changed files with 1 additions and 0 deletions
|
|
@ -1965,6 +1965,7 @@ def get_last_workfile(
|
|||
data.pop("comment", None)
|
||||
if not data.get("ext"):
|
||||
data["ext"] = extensions[0]
|
||||
data["ext"] = data["ext"].replace('.', '')
|
||||
filename = StringTemplate.format_strict_template(file_template, data)
|
||||
|
||||
if full_path:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue