Ignore:
Timestamp:
Jan 31, 2014 8:52:09 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1630): Fixed some more typos in the codes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py

    r4714 r4724  
    158158               
    159159        if status_code/100 == 2: 
    160                 write_log(3, "Call " + `call_id` + " : call transfered successfully, disconnecting call") 
     160                write_log(3, "Call " + `call_id` + " : call transferred successfully, disconnecting call") 
    161161                status = py_pjsua.call_hangup(call_id, 410, None, None) 
    162162                p_cont = 0 
     
    424424                status = py_pjsua.call_xfer(g_current_call, url, msg_data); 
    425425                if status != 0: 
    426                         py_pjsua.perror(THIS_FILE, "Error transfering call ", status) 
     426                        py_pjsua.perror(THIS_FILE, "Error transferring call ", status) 
    427427                else:            
    428                         write_log(3, "Call transfered to " + url) 
     428                        write_log(3, "Call transferred to " + url) 
    429429                 
    430430def xfer_call_replaces(): 
     
    459459                 
    460460                if dst_call == call: 
    461                         print "Destination call number must not be the same as the call being transfered" 
     461                        print "Destination call number must not be the same as the call being transferred" 
    462462                        return 
    463463                 
Note: See TracChangeset for help on using the changeset viewer.