remove redundant check

This commit is contained in:
Fatih Aşıcı
2009-01-28 09:13:12 +00:00
parent 26697ac371
commit a63fd26868
+1 -1
View File
@@ -60,7 +60,7 @@ def install(parameters = ''):
for docGlob in docFiles:
for doc in glob.glob(docGlob):
if can_access_file(doc) and not isEmpty(doc):
if not isEmpty(doc):
dodoc(doc)
def run(parameters = ''):