Ticket #1713: toolbox-ipv6-workaround.diff

File toolbox-ipv6-workaround.diff, 0.5 kB (added by Chris Arndt, 3 months ago)

Simple patch implementing workaround solution a. from comment no. 10

  • turbogears/command/base.py

    old new  
    241241    desc = "Launch the TurboGears Toolbox" 
    242242 
    243243    def __init__(self, version): 
    244         self.hostlist = ['127.0.0.1','::1'] 
     244        self.hostlist = ['127.0.0.1', '::1', '::ffff:127.0.0.1'] 
    245245 
    246246        parser = optparse.OptionParser( 
    247247            usage="%prog toolbox [options]", version="%prog " + version)