From 4732d3176e70d2adff59ff60e21033f6a842cdf1 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 24 Feb 2009 05:07:03 +0000 Subject: [PATCH] Fix issue2550517 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4169 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 10d2aa2..7d534ca 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1300,7 +1300,7 @@ class Client: try: if offset: f.seek(offset) - content = f.read(length) + content = f.read(length) finally: f.close() self.write(content) -- 2.30.2