Skip to content

Commit

Permalink
fix a typo in the convert-cache.py script (python#6253)
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan authored Jan 25, 2019
1 parent 1d335d3 commit 2d0a55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/convert-cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def main() -> None:
help="Output cache location (default: same as input)")
parser.add_argument('input_dir',
help="Input directory for the cache")
args parser.parse_args()
args = parser.parse_args()

input_dir = args.input_dir
output_dir = args.output_dir or input_dir
Expand Down

0 comments on commit 2d0a55f

Please sign in to comment.