Index: /trunk/ippToPsps/jython/datastore.py
===================================================================
--- /trunk/ippToPsps/jython/datastore.py	(revision 32057)
+++ /trunk/ippToPsps/jython/datastore.py	(revision 32058)
@@ -51,5 +51,5 @@
 
         if p.returncode != 0:
-            self.logger.error("Datastore publish failed")
+            self.logger.errorPair("Datastore publish",  "failed")
             ret = False
         else:
@@ -63,5 +63,5 @@
 
     '''
-    Removes an item to the datastore
+    Removes an item from the datastore
     '''
     def remove(self, name):
@@ -76,5 +76,5 @@
 
         if p.returncode != 0:
-            self.logger.error("Datastore removal of " + name + " failed")
+            self.logger.errorPair("Datastore removal failed",  name)
             ret = False
         else:
@@ -84,2 +84,13 @@
         return ret
 
+    '''
+    Removes a range of items from the datastore
+    '''
+    def removeRange(self, first, last):
+
+        firstInt = int(first[1:])
+        lastInt = int(last[1:])
+
+        for i in range(firstInt, lastInt):
+            
+            self.remove("B%08d" % i)
