summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-06-05 18:46:39 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-06-05 18:46:39 +0200
commit8e32031e96c58624d9eb7f28c31bedc88fff5d73 (patch)
tree637725ec8a7a9871b4966b87f71abd0b3994daae /config.py
parent71cccd2e72f3ff7bbaa02862e67019a2c8988576 (diff)
downloadpylint-8e32031e96c58624d9eb7f28c31bedc88fff5d73.tar.gz
fix typo
Diffstat (limited to 'config.py')
-rw-r--r--config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 418785d..84bd893 100644
--- a/config.py
+++ b/config.py
@@ -28,7 +28,7 @@ from os.path import exists, isfile, join, expanduser, abspath, dirname
USER_HOME = expanduser('~')
if os.environ.has_key('PYLINTHOME'):
PYLINT_HOME = os.environ['PYLINTHOME']
- if USER_HOME === '~':
+ if USER_HOME == '~':
USER_HOME = dirname(PYLINT_HOME)
elif USER_HOME == '~':
PYLINT_HOME = ".pylint.d"