From c82744e6896be4da9015c93c36258c7e776c5d37 Mon Sep 17 00:00:00 2001 From: Stumpy Frostreaver Date: Thu, 18 Feb 2016 17:12:19 -0500 Subject: [PATCH] Specified utils to import Changed import utils to import slate.utils... Was seeing issues when creating applications where it could not find slate.utils. I was changing in mine so that the PYTHONPATH included this, but I think maybe it should be specified? Not sure though... Thoughts? --- src/slate/classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slate/classes.py b/src/slate/classes.py index 580b096..2d24d97 100644 --- a/src/slate/classes.py +++ b/src/slate/classes.py @@ -22,7 +22,7 @@ from pdfminer.pdfparser import PDFPage except ImportError: from pdfminer.pdfpage import PDFPage -import utils +import slate.utils __all__ = ['PDF']