make-version.py: remove the strip-until-<changelog> workaround

This commit is contained in:
Brian Warner 2007-05-16 12:02:58 -07:00
parent b90d4a243e
commit c946a5f40c
1 changed files with 0 additions and 6 deletions

View File

@ -79,12 +79,6 @@ def update():
print "so I'm leaving version.py alone"
return 0
# windows' weird ssh process prepends some 'plink: unknown option "-O"'
# junk to the beginning of the otput. To overcome this, manually scan for
# the opening <changelog> tag before giving anything to the xml parser.
output = output[output.find("<changelog>"):]
try:
doc = xml.dom.minidom.parseString(output)
except xml.parsers.expat.ExpatError: