Skip to content

Commit ec0a493

Browse files
committed
Correct argv usage
1 parent 44030c2 commit ec0a493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def get_args(argv):
304304
def main():
305305
"""Entry point"""
306306
# Parse Options
307-
options, parser = get_args(sys.argv)
307+
options, parser = get_args(sys.argv[1:])
308308

309309
# Print available tests in order and exit
310310
if options.list_tests:

0 commit comments

Comments
 (0)