Only check that all colorschemes have theme, but not the opposite

This commit is contained in:
ZyX 2014-08-05 19:36:33 +04:00
parent b1a2b44db1
commit 145e1c2050
1 changed files with 1 additions and 1 deletions

View File

@ -1329,7 +1329,7 @@ def check(paths=None, debug=False):
name = os.path.basename(path)[:-5]
configs['top_' + typ][name] = path
diff = set(configs['themes']) ^ set(configs['colorschemes'])
diff = set(configs['colorschemes']) - set(configs['themes'])
if diff:
hadproblem = True
for ext in diff: