Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.

Ticket #1713: toolbox-ipv6-workaround.diff

File toolbox-ipv6-workaround.diff, 523 bytes (added by Chris Arndt, 4 years ago)

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

  • turbogears/command/base.py

     
    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)