From: <de...@us...> - 2003-04-09 00:08:49
|
Update of /cvsroot/pymerase/pymerase/pymerase/input In directory sc8-pr-cvs1:/tmp/cvs-serv14309/pymerase/input Modified Files: parseGenexSchemaXML.py Log Message: either removed unecessary prints or turned them into DebugWarnings to simplify the runtime output. (The first step to providing meaningful error messages.) Index: parseGenexSchemaXML.py =================================================================== RCS file: /cvsroot/pymerase/pymerase/pymerase/input/parseGenexSchemaXML.py,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** parseGenexSchemaXML.py 2 Apr 2003 23:26:39 -0000 1.26 --- parseGenexSchemaXML.py 9 Apr 2003 00:08:46 -0000 1.27 *************** *** 329,336 **** otherName = otherTypeName ! print "%s:%s <-> %s:%s" % (thisEndType.getName(None), thisName, otherEndType.getName(None), ! otherName) ################# # make this association end --- 329,337 ---- otherName = otherTypeName ! warn("%s:%s <-> %s:%s" % (thisEndType.getName(None), thisName, otherEndType.getName(None), ! otherName), ! DebugWarning) ################# # make this association end |