Merge pull request #9930 from jamwaffles/patch-1

Path: Fix undefined variable name in Command.py
This commit is contained in:
sliptonic
2023-07-18 09:04:51 -05:00
committed by GitHub

View File

@@ -242,7 +242,7 @@ def resolveFileName(job, subpartname, sequencenumber):
requestedfile = QtGui.QFileDialog.getSaveFileName(
QtGui.QApplication.activeWindow(), "Output File", fullPath
)
if foo[0]:
if requestedfile[0]:
fullPath = requestedfile[0]
else:
fullPath = None