Files
python-build/pythonbrew/commands/off.py
T
2010-11-13 03:25:56 +09:00

13 lines
250 B
Python

from pythonbrew.basecommand import Command
from pythonbrew.util import off
class OffCommand(Command):
name = "off"
usage = "%prog"
summary = "Disable pythonbrew"
def run_command(self, options, args):
off()
OffCommand()