minor fix

This commit is contained in:
Arvid Norberg 2013-08-17 19:43:54 +00:00
parent 45bf707a14
commit 712f78b5ad
1 changed files with 1 additions and 1 deletions

View File

@ -129,9 +129,9 @@ def first_item(itr):
return None
def is_visible(desc):
if desc.strip() == 'hidden': return False
if internal: return True
if desc.strip() == 'internal': return False
if desc.strip() == 'hidden': return False
return True
def highlight_signature(s):