Git fork

Merge branch 'ak/instaweb-python-port-binding-fix'

The "instaweb" bound only to local IP address without "--local" and
to all addresses with "--local", which was the other way around, when
using Python's http.server class, which has been corrected.

* ak/instaweb-python-port-binding-fix:
instaweb: fix ip binding for the python http.server

+2 -2
+2 -2
git-instaweb.sh
··· 694 694 return result 695 695 696 696 697 - bind = "127.0.0.1" 697 + bind = "0.0.0.0" 698 698 if "$local" == "true": 699 - bind = "0.0.0.0" 699 + bind = "127.0.0.1" 700 700 701 701 # Set our http root directory 702 702 # This is a work around for a missing directory argument in older Python versions