summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2011-01-06 17:18:43 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2011-01-06 17:18:43 +0100
commit91e8b4ce4adb8b19c3d928608f9dc6f1dec2a84e (patch)
treea72fe1c4c88a27e4c4708a9f89e8ddf4ffb3d291
parenta1dc8eb5ef12f566138ff725bba1a63eb3c62cec (diff)
downloadpylint-git-91e8b4ce4adb8b19c3d928608f9dc6f1dec2a84e.tar.gz
#57311: Remove mentions of optik
-rw-r--r--README1
-rw-r--r--checkers/typecheck.py3
2 files changed, 1 insertions, 3 deletions
diff --git a/README b/README
index 8ca8fba97..931917be8 100644
--- a/README
+++ b/README
@@ -8,7 +8,6 @@ Pylint requires the logilab-astng (version >= 0.21.0), logilab-common
* http://www.logilab.org/projects/astng
* http://www.logilab.org/projects/common
-* http://optik.sourceforge.net/
Install
-------
diff --git a/checkers/typecheck.py b/checkers/typecheck.py
index bb1086d3b..eec538d80 100644
--- a/checkers/typecheck.py
+++ b/checkers/typecheck.py
@@ -161,8 +161,7 @@ accessed.'}
if isinstance(owner, Instance) and owner.has_dynamic_getattr():
continue
# explicit skipping of optparse'Values class
- if owner.name == 'Values' and \
- owner.root().name in ('optik', 'optparse'):
+ if owner.name == 'Values' and owner.root().name == 'optparse':
continue
missingattr.add((owner, name))
continue