From b3b62c3b9ef32c4dbcae51cd3ef582734d5717bb Mon Sep 17 00:00:00 2001 From: James Cook <james@lindenlab.com> Date: Mon, 8 Oct 2007 22:40:47 +0000 Subject: [PATCH] Fixed obvious typo, paired with rdw. --- indra/lib/python/indra/ipc/llsdhttp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/lib/python/indra/ipc/llsdhttp.py b/indra/lib/python/indra/ipc/llsdhttp.py index 978486efa5b..0d1a1c63d63 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) -- GitLab