--- a/mercurial/util.py Sun May 01 11:46:49 2011 +0200 +++ b/mercurial/util.py Sun May 01 04:56:24 2011 -0500 @@ -774,7 +774,7 @@ def readfile(path): fp = open(path) try: - return fp.read(size) + return fp.read() finally: fp.close()