From e4609f3abebdd2d74165e0565c32e3822897e3db Mon Sep 17 00:00:00 2001 From: kimth Date: Fri, 3 Aug 2012 09:30:03 -0400 Subject: [PATCH] Remove unnecessary hardcode url in CodeResponse --- common/lib/capa/capa/responsetypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/capa/capa/responsetypes.py b/common/lib/capa/capa/responsetypes.py index 50b5df69d9..f4ba9231f5 100644 --- a/common/lib/capa/capa/responsetypes.py +++ b/common/lib/capa/capa/responsetypes.py @@ -811,7 +811,7 @@ class CodeResponse(LoncapaResponse): def setup_response(self): xml = self.xml - self.url = xml.get('url', "http://xqueue.edx.org/xqueue/submit/") # FIXME -- hardcoded url + self.url = xml.get('url') self.queue_name = xml.get('queuename', self.system.xqueue_default_queuename) answer = xml.find('answer')