[PATCH 3 of 15] Fix stupid copy-paste error

vincent at ricardis.tudelft.nl vincent at ricardis.tudelft.nl
Wed Aug 24 16:49:11 CDT 2005


Patch subject is complete summary.


# HG changeset patch
# User Vincent Wagelaar <vincent at ricardis.tudelft.nl>
# Node ID 51f0882318e4137d4f3bc952e4c3c88f5aa762d0
# Parent  6b6582fb7c89aeba6d67fcfbe3cfcfb8fbe091a6
Fix stupid copy-paste error

diff -r 6b6582fb7c89 -r 51f0882318e4 mercurial/hgweb.py
--- a/mercurial/hgweb.py	Wed Aug 24 13:24:25 2005
+++ b/mercurial/hgweb.py	Wed Aug 24 14:51:30 2005
@@ -60,7 +60,7 @@
     fd.write("Status: 404\r\n\r\n")
     fd.write("File not found: (%s)" % (filename, ))
 
-def write(stdout, fd, *things):
+def write(fd, *things):
     for thing in things:
         if hasattr(thing, "__iter__"):
             for part in thing:
@@ -892,3 +892,4 @@
                 parity = 1 - parity
 
         write(stdout, tmpl("index", entries = entries))
+


More information about the Mercurial mailing list