mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Update run.py
None and False are better values here (thanks to @jgraham).
This commit is contained in:
parent
7f62ec63ea
commit
671a038fda
1 changed files with 2 additions and 2 deletions
|
@ -34,8 +34,8 @@ def set_defaults(args):
|
||||||
args.include = args.include if args.include else ["/dom", "/XMLHttpRequest"]
|
args.include = args.include if args.include else ["/dom", "/XMLHttpRequest"]
|
||||||
args.binary = args.binary if args.binary else os.path.join(servo_root, "build", "servo")
|
args.binary = args.binary if args.binary else os.path.join(servo_root, "build", "servo")
|
||||||
args.product = "servo"
|
args.product = "servo"
|
||||||
args.debug_args = ""
|
args.debug_args = None
|
||||||
args.interactive = ""
|
args.interactive = False
|
||||||
return vars(args)
|
return vars(args)
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue