Some other people might use the official Windows build of darcs, and people who use my cygwin wrapper for darcs will be compatible with this patch as long as they use the latest version of the wrapper.
return 0
print "no _darcs/ but no version.py either: how did you get this tree?"
return 0
- darcs = 'darcs'
- if sys.platform == 'win32':
- darcs = 'realdarcs'
- cmd = [darcs, "changes", "--from-tag=^allmydata-tahoe", "--xml-output"]
+ cmd = ["darcs", "changes", "--from-tag=^allmydata-tahoe", "--xml-output"]
try:
p = Popen(cmd, stdout=PIPE)
output = p.communicate()[0]