Skip to content

Commit

Permalink
Fix exception when updating WPT metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Mar 6, 2018
1 parent 2d3771d commit 00738bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/wpt/update/updatecommandline.py
Expand Up @@ -20,7 +20,8 @@ def check_args(kwargs):
from wptrunner import wptcommandline

wptcommandline.set_from_config(kwargs)
wptcommandline.check_paths(kwargs)
if hasattr(wptcommandline, 'check_paths'):
wptcommandline.check_paths(kwargs)
kwargs["upstream"] = kwargs["upstream"] if kwargs["upstream"] is not None else kwargs["sync"]

if kwargs["upstream"]:
Expand Down

0 comments on commit 00738bf

Please sign in to comment.