summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-10-08 22:40:47 +0000
committerJames Cook <james@lindenlab.com>2007-10-08 22:40:47 +0000
commitb3b62c3b9ef32c4dbcae51cd3ef582734d5717bb (patch)
treeed2a6962e3b3dad5ad613952a81366c3a6485672 /indra
parentfbfd85165caf9f4ac73236aa4380549c9eb7306d (diff)
Fixed obvious typo, paired with rdw.
Diffstat (limited to 'indra')
-rw-r--r--indra/lib/python/indra/ipc/llsdhttp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/lib/python/indra/ipc/llsdhttp.py b/indra/lib/python/indra/ipc/llsdhttp.py
index 978486efa5..0d1a1c63d6 100644
--- a/indra/lib/python/indra/ipc/llsdhttp.py
+++ b/indra/lib/python/indra/ipc/llsdhttp.py
@@ -47,7 +47,7 @@ def postFile(url, filename, verbose=False):
f = open(filename)
body = f.read()
f.close()
- llsd_body = llsd.parse(bodY)
+ llsd_body = llsd.parse(body)
return post(url, llsd_body, verbose=verbose)