summaryrefslogtreecommitdiffstats
path: root/gzread.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-13 23:55:31 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-13 23:55:31 +0000
commit0325cc85396ae6afd311440192c3746efcfadc1d (patch)
tree56e79a9337156776547598c19be0216ee49410a8 /gzread.py
parent48b3f9cb30207f7f23071db4d9a452c65e95f392 (diff)
downloadanaconda-0325cc85396ae6afd311440192c3746efcfadc1d.tar.gz
anaconda-0325cc85396ae6afd311440192c3746efcfadc1d.tar.xz
anaconda-0325cc85396ae6afd311440192c3746efcfadc1d.zip
make implicit 'return None' explicit (can't ever get called anyway)
Diffstat (limited to 'gzread.py')
-rw-r--r--gzread.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gzread.py b/gzread.py
index 7cbaf27bf..f9a75a7d3 100644
--- a/gzread.py
+++ b/gzread.py
@@ -200,6 +200,7 @@ class GzipFile:
return string.join(bufs, '')
bufs.append(c)
readsize = readsize * 2
+ return None
def readlines(self):
buf = self.read()