diff options
author | Alexandre Fayolle <alexandre.fayolle@logilab.fr> | 2008-06-05 18:46:39 +0200 |
---|---|---|
committer | Alexandre Fayolle <alexandre.fayolle@logilab.fr> | 2008-06-05 18:46:39 +0200 |
commit | 8e32031e96c58624d9eb7f28c31bedc88fff5d73 (patch) | |
tree | 637725ec8a7a9871b4966b87f71abd0b3994daae /config.py | |
parent | 71cccd2e72f3ff7bbaa02862e67019a2c8988576 (diff) | |
download | pylint-8e32031e96c58624d9eb7f28c31bedc88fff5d73.tar.gz |
fix typo
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |