From c232872e13f10f3d2874d10c99b06a113d36bd45 Mon Sep 17 00:00:00 2001 From: karxi Date: Thu, 22 Dec 2016 17:30:29 -0500 Subject: [PATCH] Fixed a typo. --- console.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console.py b/console.py index 1a3375a..c584f71 100644 --- a/console.py +++ b/console.py @@ -124,12 +124,12 @@ class ConsoleWindow(QtGui.QDialog): "MAINWIN": self.mainwindow, "PCONFIG": self.mainwindow.config } - _CUSTOM_ENV_USE = [] + _CUSTOM_ENV_USED = [] cenv = pchum.__dict__ for k in _CUSTOM_ENV: if k not in cenv: cenv[k] = _CUSTOM_ENV[k] - _CUSTOM_ENV_USE.append(k) + _CUSTOM_ENV_USED.append(k) else: # Don't overwrite anything! warn = "Console environment item {!r} already exists in CENV."