buildframework/helium/sf/python/pythoncore/lib/bomtofile.py
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/python/pythoncore/lib/bomtofile.py	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/python/pythoncore/lib/bomtofile.py	Fri Aug 13 14:59:05 2010 +0300
@@ -19,8 +19,7 @@
 """build of Materials to file writer"""
 
 class BOMWriter(object):
-    """
-    Read BOM and output in text
+    """ Read BOM and output in text.
     """
     def __init__(self, session, project_name, project, output_dir):
         self.project_name = project_name
@@ -48,16 +47,14 @@
             fileout.write(str(i) + ") " + str(project) + "\n")
             
             cmproject = self.session.create(str(project))
+
+            baseline = str(cmproject.baseline).strip()
+            if baseline == "None":
+                fileout.write(str(i) + ") " + str(project) + "\n")
+            else:
+                fileout.write(str(i) + ") " + baseline + "\n")
+            i += 1
             
-            try:
-                baseline = str(cmproject.baseline).strip()
-                if baseline == "None":
-                    fileout.write(str(i) + ") " + str(project) + "\n")
-                else:
-                    fileout.write(str(i) + ") " + baseline + "\n")
-                i += 1
-            except Exception, ex:
-                print ex
         fileout.close()
             
     def writetasks(self):