From: Joseph Sutton Date: Thu, 11 Jan 2024 20:57:54 +0000 (+1300) Subject: s4:scripting: Remove trailing whitespace X-Git-Tag: talloc-2.4.2~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16e55406e97d0edf5816887c63eb789998d3c0a3;p=thirdparty%2Fsamba.git s4:scripting: Remove trailing whitespace Signed-off-by: Joseph Sutton Reviewed-by: Douglas Bagnall --- diff --git a/source4/scripting/bin/gen_ntstatus.py b/source4/scripting/bin/gen_ntstatus.py index e4b0ad8e428..13f5fa1c756 100755 --- a/source4/scripting/bin/gen_ntstatus.py +++ b/source4/scripting/bin/gen_ntstatus.py @@ -88,7 +88,7 @@ def generatePythonFile(out_file, errors): out_file.write("\tif (m == NULL)\n") out_file.write("\t\treturn NULL;\n\n") for err in errors: - line = """\tPyModule_AddObject(m, \"%s\", + line = """\tPyModule_AddObject(m, \"%s\", \t\tPyLong_FromUnsignedLongLong(NT_STATUS_V(%s)));\n""" % (err.err_define, err.err_define) out_file.write(line) out_file.write("\n")