diff --git a/Makefile b/Makefile index a2a47412..1030f10d 100644 --- a/Makefile +++ b/Makefile @@ -225,7 +225,7 @@ pre-release: ## All the necessary steps before making a release. release: ## Creates a release (tar.gz + upload + git tag release). ${MAKE} pre-release - $(PYTHON) -m twine upload dist/* # upload tar on PYPI + $(PYTHON) -m twine upload --verbose dist/* # upload tar on PYPI ${MAKE} git-tag-release generate-manifest: ## Generates MANIFEST.in file. diff --git a/pyftpdlib/ioloop.py b/pyftpdlib/ioloop.py index 9b1ef0f9..2ed89edf 100644 --- a/pyftpdlib/ioloop.py +++ b/pyftpdlib/ioloop.py @@ -300,7 +300,7 @@ def instance(cls): if cls._instance is None: cls._instance = cls() return cls._instance - + @classmethod def factory(cls): """Constructs a new IOLoop instance.""" diff --git a/pyftpdlib/servers.py b/pyftpdlib/servers.py index 0b4f3b34..5563c07e 100644 --- a/pyftpdlib/servers.py +++ b/pyftpdlib/servers.py @@ -43,7 +43,6 @@ import traceback from .ioloop import Acceptor -from .ioloop import IOLoop from .log import PREFIX from .log import PREFIX_MPROC from .log import config_logging diff --git a/scripts/internal/print_announce.py b/scripts/internal/print_announce.py index 2726bdaf..11002d12 100755 --- a/scripts/internal/print_announce.py +++ b/scripts/internal/print_announce.py @@ -15,7 +15,7 @@ HERE = os.path.abspath(os.path.dirname(__file__)) -HISTORY = os.path.abspath(os.path.join(HERE, '../HISTORY.rst')) +HISTORY = os.path.abspath(os.path.join(HERE, '../../HISTORY.rst')) PRJ_NAME = 'pyftpdlib' PRJ_URL_HOME = 'https://github.com/giampaolo/pyftpdlib' @@ -50,7 +50,7 @@ -- -Giampaolo - http://grodola.blogspot.com +Giampaolo - https://gmpy.dev/ """