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

14 lines
311 B
Python

from pythonbrew.basecommand import Command
from pythonbrew.define import VERSION
from pythonbrew.log import logger
class VersionCommand(Command):
name = "version"
usage = "%prog"
summary = "Show version"
def run_command(self, options, args):
logger.info(VERSION)
VersionCommand()