WIP: HA updates, includes network partition
diff --git a/TestON/core/teston.py b/TestON/core/teston.py
index 0925edd..142505a 100644
--- a/TestON/core/teston.py
+++ b/TestON/core/teston.py
@@ -139,7 +139,7 @@
             try :
                 self.configDict = xmldict.xml_to_dict(xml)
                 return self.configDict
-            except :
+            except (Exception):
                 print "There is no such file to parse " + self.configFile
                         
     def componentInit(self,component):
@@ -241,8 +241,9 @@
                 exec code[testCaseNumber][step] in module.__dict__
                 self.stepCount = self.stepCount + 1
             except TypeError,e:
-                print "Exception in the following section of code:"
-                print code[testCaseNumber][step]
+                print "Exception in the following section of code: Test Step " +\
+                      str(testCaseNumber) + "." + str(step) + " ):"
+                #print code[testCaseNumber][step]
                 self.stepCount = self.stepCount + 1
                 self.log.exception(e)
             return main.TRUE