(Translated by https://www.hiragana.jp/)
Now returns dest file path · lawson-tanner/pyavc@1006092 · GitHub
Skip to content

Commit

Permalink
Now returns dest file path
Browse files Browse the repository at this point in the history
  • Loading branch information
lawson-tanner committed Sep 15, 2024
1 parent 1bf6c51 commit 1006092
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="pyavc",
version="1.0.11",
version="1.0.15",
author="Lawson Tanner",
author_email="pyavc@lawsonia.cc",
description="A command line utility and library for converting DOCX and TXT files to Avid Script Files (.avc)",
Expand Down
2 changes: 1 addition & 1 deletion src/avc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def convert(filepath, output_dir, output_name=None):
avc = AVCFile(filepath, output_dir, output_name)
try:
returned_filepath = avc.create()
return returned filepath
return returned_filepath

except Exception as e:
print(f"There was an error: {e}")

0 comments on commit 1006092

Please sign in to comment.