diff --git a/twine/utils.py b/twine/utils.py index 113b427c..dab2835c 100644 --- a/twine/utils.py +++ b/twine/utils.py @@ -64,6 +64,8 @@ def get_config(path: str = "~/.pypirc") -> Dict[str, RepositoryConfig]: # Expand user strings in the path path = os.path.expanduser(path) + logger.info("Config Location: " + path) + # Parse the rc file if os.path.isfile(path): parser.read(path)