summaryrefslogtreecommitdiff
path: root/indra/lib/python
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-01-07 15:15:59 -0500
committerOz Linden <oz@lindenlab.com>2014-01-07 15:15:59 -0500
commitfcac9fdaddaea6ec94d1c3726c8f19809d696169 (patch)
tree1b7c9c8412323110664154e1189b7fa854b524ba /indra/lib/python
parentad40f7534fdae6ec85597bbfce32e72248cd61fa (diff)
parenta25bcb8523db08877c47fdbd834589ebbe45ff82 (diff)
merge changes for Snowstorm fall contributions
Diffstat (limited to 'indra/lib/python')
-rwxr-xr-xindra/lib/python/indra/base/lluuid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/lib/python/indra/base/lluuid.py b/indra/lib/python/indra/base/lluuid.py
index 369ae4e92f..7413ffe10d 100755
--- a/indra/lib/python/indra/base/lluuid.py
+++ b/indra/lib/python/indra/base/lluuid.py
@@ -72,7 +72,7 @@ class UUID(object):
ip = ''
try:
ip = socket.gethostbyname(socket.gethostname())
- except(socket.gaierror):
+ except(socket.gaierror, socket.error):
# no ip address, so just default to somewhere in 10.x.x.x
ip = '10'
for i in range(3):