Skip to content

Commit

Permalink
woops
Browse files Browse the repository at this point in the history
  • Loading branch information
NevermindNilas committed Dec 21, 2023
1 parent c776608 commit a980149
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dedup/dedup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ def run(self):
subprocess.Popen(
ffmpeg_command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

return os.normpath(self.output)
return os.path.normpath(self.output)
4 changes: 2 additions & 2 deletions src/trim_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run(self):
subprocess.Popen(
command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

return os.normpath(self.output)
return os.path.normpath(self.output)

class trim_input_dedup():
def __init__(self, input, output, inpoint, outpoint, Do_not_process):
Expand Down Expand Up @@ -63,6 +63,6 @@ def run(self):
subprocess.Popen(
command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

return os.normpath(self.output)
return os.path.normpath(self.output)


0 comments on commit a980149

Please sign in to comment.