diff --git a/txupnp/scpd.py b/txupnp/scpd.py
index 77d0394..de59353 100644
--- a/txupnp/scpd.py
+++ b/txupnp/scpd.py
@@ -36,7 +36,7 @@ def xml_arg(name, arg):
def get_soap_body(service_name, method, param_names, **kwargs):
args = "".join(xml_arg(n, kwargs.get(n)) for n in param_names)
- return '\n%s\n%s' % (XML_VERSION, method, service_name, args, method)
+ return '\n%s\n%s' % (XML_VERSION, method, service_name, args, method)
class _SCPDCommand(object):