Files
python-build/pythonbrew/commands/clean.py
T
2011-07-10 20:49:00 +09:00

13 lines
400 B
Python

from pythonbrew.basecommand import Command
from pythonbrew.log import logger
class CleanCommand(Command):
name = "clean"
usage = "%prog"
summary = "Remove stale source folders and archives"
def run_command(self, options, args):
logger.info('\nDEPRECATION WARNING: `pythonbrew clean` has been renamed. Please run `pythonbrew cleanup` instead.\n')
CleanCommand()