From fb87e41b631f008716d622ab4a54e743de8b6ae0 Mon Sep 17 00:00:00 2001 From: Harri Berglund Date: Tue, 28 Apr 2015 20:16:02 +0300 Subject: [PATCH] Fix typos --- README.rst | 4 ++-- pipreqs/pipreqs.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index caa3b8f..6ce695a 100644 --- a/README.rst +++ b/README.rst @@ -47,9 +47,9 @@ Example $ pipreqs /home/project/location Looking for imports - Getting latest version of packages information from PyPi + Getting latest information about packages from PyPI Found third-party imports: flask, requests, sqlalchemy, docopt - Successfuly saved requirements file in: /home/project/location/requirements.txt + Successfully saved requirements file in /home/project/location/requirements.txt Why not pip freeze? ------------------- diff --git a/pipreqs/pipreqs.py b/pipreqs/pipreqs.py index cf7b14e..d03c3bf 100755 --- a/pipreqs/pipreqs.py +++ b/pipreqs/pipreqs.py @@ -86,12 +86,12 @@ def get_imports_info(imports): def init(args): print("Looking for imports") imports = get_all_imports(args['']) - print("Getting latest version of packages information from PyPi") + print("Getting latest information about packages from PyPI") imports_with_info = get_imports_info(imports) print("Found third-party imports: " + ", ".join(imports)) path = args["--savepath"] if args["--savepath"] else os.path.join(args[''], "requirements.txt") generate_requirements_file(path, imports_with_info) - print("Successfuly saved requirements file in: " + path) + print("Successfully saved requirements file in " + path) def main(): # pragma: no cover