Fix typo in attribute name (chunk_size should be chunksize) found by
Neil Norwitz's PyChecker.
diff --git a/Lib/chunk.py b/Lib/chunk.py
index 0a93cd3..8116256 100644
--- a/Lib/chunk.py
+++ b/Lib/chunk.py
@@ -106,7 +106,7 @@
         if whence == 1:
             pos = pos + self.size_read
         elif whence == 2:
-            pos = pos + self.chunk_size
+            pos = pos + self.chunksize
         if pos < 0 or pos > self.chunksize:
             raise RuntimeError
         self.file.seek(self.offset + pos, 0)