summaryrefslogtreecommitdiff
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
commita5b53a2b76b6b68e5be5e0a5103c388a27bd3334 (patch)
tree08799f4088de05599efddec281accbe6d8849f02
parent1305a73de53853a35a8b27e0b8a37d316bceeef3 (diff)
downloadpylint-git-a5b53a2b76b6b68e5be5e0a5103c388a27bd3334.tar.gz
fix typo
-rw-r--r--config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 418785db2..84bd893c1 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"