diff options
author | James Cook <james@lindenlab.com> | 2007-10-08 22:40:47 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-10-08 22:40:47 +0000 |
commit | b3b62c3b9ef32c4dbcae51cd3ef582734d5717bb (patch) | |
tree | ed2a6962e3b3dad5ad613952a81366c3a6485672 /indra/lib | |
parent | fbfd85165caf9f4ac73236aa4380549c9eb7306d (diff) |
Fixed obvious typo, paired with rdw.
Diffstat (limited to 'indra/lib')
-rw-r--r-- | indra/lib/python/indra/ipc/llsdhttp.py | 2 |
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) |