update symlink command

This commit is contained in:
utahta
2011-05-24 18:12:31 +09:00
parent 91101100a7
commit c0f9d4ed57
3 changed files with 46 additions and 25 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ import sys
import re
from optparse import OptionParser
from pythonbrew import commands
from pythonbrew.define import PATH_BIN_PYTHONBREW
command_dict = {}
@@ -14,7 +13,7 @@ class Command(object):
def __init__(self):
self.parser = OptionParser(usage=self.usage,
prog='%s %s' % (PATH_BIN_PYTHONBREW, self.name))
prog='%s %s' % ("pythonbrew", self.name))
command_dict[self.name] = self
def run(self, args):