This commit is contained in:
utahta
2011-07-10 21:17:05 +09:00
parent f9bcb60638
commit 2469c1a7af
4 changed files with 8 additions and 15 deletions
-12
View File
@@ -1,12 +0,0 @@
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()
+1 -1
View File
@@ -22,6 +22,6 @@ class HelpCommand(Command):
for command in commands:
logger.info(" %s: %s" % (command.name, command.summary))
logger.info("\nFurther Instructions:")
logger.info(" http://github.com/utahta/pythonbrew")
logger.info(" https://github.com/utahta/pythonbrew")
HelpCommand()