summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKane Blueriver <kxxoling@gmail.com>2018-07-27 00:46:07 +0800
committerGitHub <noreply@github.com>2018-07-27 00:46:07 +0800
commit8e5cede828bda53d375efaa1d1bf9883a3e5f51b (patch)
treef00833a23f33489ac90b1d5f97e4ca93ea2791e6
parentc9853741e25a495a2022b4f279f2e9012ac8a285 (diff)
parenta78ff9b04cd8ef5b3f79418d9a07e170e547db82 (diff)
downloadpython-prettytable-ptable-8e5cede828bda53d375efaa1d1bf9883a3e5f51b.tar.gz
Merge pull request #18 from zarnovican/bza_PLAIN_COLUMNS_style
fix import for PLAIN_COLUMNS style
-rw-r--r--prettytable/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prettytable/__init__.py b/prettytable/__init__.py
index ac2cb37..bef5807 100644
--- a/prettytable/__init__.py
+++ b/prettytable/__init__.py
@@ -33,5 +33,5 @@
__version__ = "0.9.2"
from .prettytable import PrettyTable
-from .prettytable import ALL, HEADER, MSWORD_FRIENDLY, NONE
+from .prettytable import ALL, HEADER, MSWORD_FRIENDLY, NONE, PLAIN_COLUMNS
from .factory import from_csv, from_db_cursor, from_html, from_html_one