Skip to content
Snippets Groups Projects
Commit 66bd41d1 authored by juanf's avatar juanf
Browse files

SSDM-6377 : bugfix

parent 8cd9a9f0
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,9 @@ def doSpacesBelongToDisabledUsers(context, parameters): ...@@ -38,6 +38,9 @@ def doSpacesBelongToDisabledUsers(context, parameters):
# TO-DO Replace generating SQL manually by variable substitution # TO-DO Replace generating SQL manually by variable substitution
spaceCodes = parameters.get("spaceCodes"); spaceCodes = parameters.get("spaceCodes");
if spaceCodes is None or len(spaceCodes) == 0:
return []
spaceCodesList = "(" spaceCodesList = "("
isFirst = True isFirst = True
for spaceCode in spaceCodes: for spaceCode in spaceCodes:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment