Mercurial > hg > orthanc
changeset 3156:0c2b719c3796
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 22 Jan 2019 12:55:41 +0100 |
parents | 077e1101d908 |
children | 8a9eb767280c |
files | Core/DicomParsing/FromDcmtkBridge.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Core/DicomParsing/FromDcmtkBridge.cpp Mon Jan 21 15:57:39 2019 +0100 +++ b/Core/DicomParsing/FromDcmtkBridge.cpp Tue Jan 22 12:55:41 2019 +0100 @@ -2055,7 +2055,7 @@ if (output.type() != Json::objectValue) { throw OrthancException(ErrorCode_LuaBadOutput, - "Lua: IncomingFindRequestFilter must return a table"); + "Lua: The script must return a table"); } Json::Value::Members members = output.getMemberNames(); @@ -2065,7 +2065,7 @@ if (output[members[i]].type() != Json::stringValue) { throw OrthancException(ErrorCode_LuaBadOutput, - "Lua: IncomingFindRequestFilter must return a table " + "Lua: The script must return a table " "mapping names of DICOM tags to strings"); }