8000 DEVX-2534 - Fixed redundant countries by senthgit · Pull Request #235 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

DEVX-2534 - Fixed redundant countries #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed redundant countries
- DEVX-2534
  • Loading branch information
senthgit committed Nov 16, 2015
commit c87ee2781852d4830db5ceb435c3726d1e4083a4
2 changes: 1 addition & 1 deletion twilio/rest/pricing.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def messaging_countries(self):
Returns a :class:`MessagingCountries` resource
:return: MessagingCountries
"""
messaging_countries_uri = "{0}/Messaging/Countries".format(
messaging_countries_uri = "{0}/Messaging".format(
self.uri_base)
return MessagingCountries(messaging_countries_uri, self.auth,
self.timeout)
0