Skip to content

Commit

Permalink
Merge pull request #22290 from mantidproject/22289_updating_print_sta…
Browse files Browse the repository at this point in the history
…tement_in_save_workspace

Updated print statement to python 3 in SaveWorkspaces
  • Loading branch information
AndreiSavici authored Apr 13, 2018
2 parents b96c1a2 + dee1efd commit 05a069b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/widgets/common/src/SaveWorkspaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ void SaveWorkspaces::saveSel() {
} // end if save in this format
} // end loop over formats

saveCommands += "print 'success'";
saveCommands += "print('success')";
QString status(runPythonCode(saveCommands).trimmed());

if (m_saveAsZeroErrorFree) {
Expand Down

0 comments on commit 05a069b

Please sign in to comment.