]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
make-version.py: remove the strip-until-<changelog> workaround
authorBrian Warner <warner@allmydata.com>
Wed, 16 May 2007 19:02:58 +0000 (12:02 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 16 May 2007 19:02:58 +0000 (12:02 -0700)
misc/make-version.py

index c3d284c3c3d7946728dfaa8e7eddb54f6774d33b..f52d5445986193430f79692092e3b4ad1f84622b 100644 (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: