From: Brian Warner <warner@allmydata.com>
Date: Wed, 16 May 2007 19:02:58 +0000 (-0700)
Subject: make-version.py: remove the strip-until-<changelog> workaround
X-Git-Tag: allmydata-tahoe-0.3.0~77
X-Git-Url: https://git.rkrishnan.org/%5B/simplejson?a=commitdiff_plain;h=c946a5f40c679e0dbefa8897cb5fb41f3474faf2;p=tahoe-lafs%2Ftahoe-lafs.git

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

diff --git a/misc/make-version.py b/misc/make-version.py
index c3d284c3..f52d5445 100644
--- a/misc/make-version.py
+++ b/misc/make-version.py
@@ -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: