From 99e7599ce2e670941a3289c7c998cbe0f8e2d079 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Tue, 4 Feb 2014 04:10:19 +0000 Subject: [PATCH] OleFileIO: Add MAGIC constant to __all__ This is used by other modules in Pillow. --- PIL/OleFileIO.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/OleFileIO.py b/PIL/OleFileIO.py index 373c830c0..0e2723b19 100644 --- a/PIL/OleFileIO.py +++ b/PIL/OleFileIO.py @@ -226,7 +226,7 @@ from PIL import _binary import struct, array, os.path, datetime #[PL] Define explicitly the public API to avoid private objects in pydoc: -__all__ = ['OleFileIO', 'isOleFile'] +__all__ = ['OleFileIO', 'isOleFile', 'MAGIC'] if str is not bytes: long = int