Changeset 241
- Timestamp:
- 02/25/08 16:48:01 (5 years ago)
- Files:
-
- 1 modified
-
make_serverxml.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
make_serverxml.py
r127 r241 25 25 def __init__(self, path): 26 26 "construcor gets path, opens package.xml and extracts the relevant information" 27 dom = xml.dom.minidom.parse(path+"/package.xml").documentElement 27 try: 28 dom = xml.dom.minidom.parse(path+"/package.xml").documentElement 29 except: 30 print path,"nicht wohlgeformt" 28 31 self.name = dom.getAttribute("name") 29 32 self.packageinformation = dom.getElementsByTagName("packageinformation")
