From: Traun Leyden Date: Tue, 16 Jun 2009 08:50:37 +0000 (+0000) Subject: transfer was renamed to uuid_transfer in fs api and this method was not updated X-Git-Tag: v1.0.4~486 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f22c3e50e8281fceb77300881dcd8d7f3eb1040a;p=thirdparty%2Ffreeswitch.git transfer was renamed to uuid_transfer in fs api and this method was not updated git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13779 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/scripts/socket/freepy/__init__.py b/scripts/socket/freepy/__init__.py index bbee050d10..a16f54c08c 100644 --- a/scripts/socket/freepy/__init__.py +++ b/scripts/socket/freepy/__init__.py @@ -338,10 +338,10 @@ class FreepyDispatcher(LineReceiver): transfer [-bleg|-both] """ if bgapi == True: - msg = "bgapi transfer %s %s %s" % (uuid, legs, dest_ext) + msg = "bgapi uuid_transfer %s %s %s" % (uuid, legs, dest_ext) req = request.BgApiRequest() else: - msg = "api transfer %s %s %s" % (uuid, legs, dest_ext) + msg = "api uuid_transfer %s %s %s" % (uuid, legs, dest_ext) req = request.ApiRequest() self.requestq.put(req) self.transport.write("%s\n\n" % msg)