🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 13:20:05 | PHP 8.1.34
📂
/ (Root)
/
usr
/
lib
/
python3.9
/
site-packages
/
setuptools
/
command
📍 /usr/lib/python3.9/site-packages/setuptools/command
🔄 Refresh
✏️
Editing: upload.py
Read Only
from distutils import log from distutils.command import upload as orig from setuptools.errors import RemovedCommandError class upload(orig.upload): """Formerly used to upload packages to PyPI.""" def run(self): msg = ( "The upload command has been removed, use twine to upload " + "instead (https://pypi.org/p/twine)" ) self.announce("ERROR: " + msg, log.ERROR) raise RemovedCommandError(msg)
💾 Save Changes
❌ Cancel