Skip to content

Commit

Permalink
Revert change causing plugins not being updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasAubry committed Nov 11, 2017
1 parent 3bd6b5a commit e790dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openwebvulndb/wordpress/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def load_input():
plugins = await subversion.get_plugins_with_new_release(date.today() - timedelta(days=interval))
themes = await subversion.get_themes_with_new_release(date.today() - timedelta(days=interval))
task_list = plugins | themes
metas = list(storage.list_meta("themes")) + list(storage.list_meta("themes"))
metas = list(storage.list_meta("plugins")) + list(storage.list_meta("themes"))
existing_keys = {meta.key for meta in metas}
task_list &= existing_keys

Expand Down

0 comments on commit e790dff

Please sign in to comment.