Remove extraneous print.

This commit is contained in:
yrriban 2025-05-30 02:10:52 -04:00
parent 5b6ea201fe
commit 43639955fb

View file

@ -22,7 +22,6 @@ class Fabricate(dcc.doom_base.WadMap):
list.append(options, f"{k}={v}") list.append(options, f"{k}={v}")
if len(options) > 0: if len(options) > 0:
options = ["-assign", ",".join(options)] options = ["-assign", ",".join(options)]
print(options)
subprocess.run(command + self.dsda_preamble() + options + subprocess.run(command + self.dsda_preamble() + options +
["-timedemo", self.demo_in_path()] + ["-timedemo", self.demo_in_path()] +
["-viddump", self.video_path()]) ["-viddump", self.video_path()])