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
commit022033ca16789f757eb2f2fc79a748ab604b694f (patch)
treeff7dc354a3cee3cd295703979000d375e04f8e61
parent30c5da98a1fd839c226b566b40fcf898f900a77a (diff)
downloadpylint-022033ca16789f757eb2f2fc79a748ab604b694f.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 8ca8fba..931917b 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 bb1086d..eec538d 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