mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

andrug
03.13.2008 66d8dbace68739d7f2d5b1a5890ba8a223325680
fix ImportLdifWithScript(): -I and -E parameters on windows
1 files modified
4 ■■■■ changed files
opends/tests/shared/functions/dsadm.xml 4 ●●●● patch | view | raw | blame | history
opends/tests/shared/functions/dsadm.xml
@@ -918,11 +918,11 @@
          
        if dsIncludeFilter:
          for InFilter in dsIncludeFilter:
            STAFCmdParamsList.append('-I %s ' % InFilter)
            STAFCmdParamsList.append('-I "%s" ' % InFilter)
        if dsExcludeFilter:
          for ExFilter in dsExcludeFilter:
            STAFCmdParamsList.append('-E %s ' % ExFilter)
            STAFCmdParamsList.append('-E "%s" ' % ExFilter)
          
        if dsRejectFile:
          STAFCmdParamsList.append('-R %s' % dsRejectFile)