From 5af0c2a955ed108973387181e3ac672fbdc395ec Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Mon, 14 Mar 2016 20:11:04 -0700 Subject: [PATCH] use the proper Python 3.x name for [Safe]ConfigParser --- tldp/cascadingconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/cascadingconfig.py b/tldp/cascadingconfig.py index c489526..8e25a02 100644 --- a/tldp/cascadingconfig.py +++ b/tldp/cascadingconfig.py @@ -17,7 +17,7 @@ CLISEP = CFGSEP = '-' # -- dash - MULTIVALUESEP = ',' try: - from configparser import SafeConfigParser as ConfigParser + from configparser import ConfigParser as ConfigParser except ImportError: from ConfigParser import SafeConfigParser as ConfigParser