Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #28 from jmulford-bandwidth/fix-bxml-import-statement
Browse files Browse the repository at this point in the history
Fixed bxml import statement
  • Loading branch information
jkgibbs committed Sep 7, 2018
2 parents a1119f2 + f294606 commit 221bc68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bandwidth/voice/bxml.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ class Response:
BXML Response element
:Example:
response = bandwidth.catapult.bxml.Response(E.Call({'from': '+1234567890', 'to': '+1234567891'}), E.Hangup())
from bandwidth.voice.bxml import Response
response = Response(E.Call({'from': '+1234567890', 'to': '+1234567891'}), E.Hangup())
"""

def __init__(self, *response_verbs):
Expand Down

0 comments on commit 221bc68

Please sign in to comment.