From 5fae100c698ded37db412c405631ac831ef35572 Mon Sep 17 00:00:00 2001
From: Gary Williams <gary.williams@forgerock.com>
Date: Tue, 22 Nov 2011 15:52:14 +0000
Subject: [PATCH] Maintain backwards compatability with older version of Jython on Unicode

---
 opends/tests/staf-tests/shared/functions/environment.xml |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opends/tests/staf-tests/shared/functions/environment.xml b/opends/tests/staf-tests/shared/functions/environment.xml
index 61837fc..f115f57 100755
--- a/opends/tests/staf-tests/shared/functions/environment.xml
+++ b/opends/tests/staf-tests/shared/functions/environment.xml
@@ -56,7 +56,7 @@
       
       <iterate var="sharedLib" in="sharedLibs">
         <import machine="STAF_LOCAL_HOSTNAME"
-          file="'%s/%s' % (TESTS_FUNCTIONS_DIR,sharedLib)" />
+          file="'%s/%s' % (TESTS_FUNCTIONS_DIR,sharedLib)"/>
       </iterate>
         
   </sequence>  
@@ -66,7 +66,7 @@
   <function name="importPythonLibraries">
     <function-prolog>
     This function imports the Python libraries and objects, 
-    both starndard and local shared ones.
+    both standard and local shared ones.
   </function-prolog>    
    
     <sequence>
@@ -76,7 +76,7 @@
         import re
         import os
         import sys
-        from org.python.core import PyString,PyUnicode,PyList,PyDictionary
+        from org.python.core import PyString,PyList,PyDictionary
       </script>
 
       <!-- Load in any additional Java classes -->
@@ -560,9 +560,9 @@
       <script>
         STAXLogMessage = 1
       </script>
-  
+
       <call function="'importSharedLibraries'"/>
-      
+  
       <call function="'importPythonLibraries'"/>
       
       <call function="'initialiseGlobalVariables'"/>

--
Gitblit v1.10.0