1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Replace command "python" by "python3"

This commit is contained in:
Sebastian Pipping
2023-06-18 23:07:04 +02:00
parent ffb2f44236
commit b2a895cb89
4 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ It merges and deletes the request obsolete keys (protocol, host, port, path)
into new 'uri' key.
Usage::
python -m vcr.migration PATH
python3 -m vcr.migration PATH
The PATH can be path to the directory with cassettes or cassette itself
"""
@@ -138,7 +138,7 @@ def try_migrate(path):
def main():
if len(sys.argv) != 2:
raise SystemExit(
"Please provide path to cassettes directory or file. " "Usage: python -m vcr.migration PATH"
"Please provide path to cassettes directory or file. " "Usage: python3 -m vcr.migration PATH"
)
path = sys.argv[1]