Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
3897b61c
Commit
3897b61c
authored
Mar 27, 2019
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5ShortMessage: fix some python3 syntax errors
parent
533814f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/ERP5ShortMessage/Document/MobytGateway.py
product/ERP5ShortMessage/Document/MobytGateway.py
+2
-2
No files found.
product/ERP5ShortMessage/Document/MobytGateway.py
View file @
3897b61c
...
...
@@ -189,7 +189,7 @@ class MobytGateway(XMLObject):
return
[
result
.
get
(
'status_info'
,
""
)]
#return message id (gateway side)
elif
result
[
'status'
]
==
"KO"
:
#we get an error when call the gateway
raise
SMSGatewayError
,
urllib
.
unquote
(
result
.
get
(
'status_info'
,
"Impossible to send the SMS"
))
raise
SMSGatewayError
(
urllib
.
unquote
(
result
.
get
(
'status_info'
,
"Impossible to send the SMS"
)
))
elif
result
[
'status'
]
==
"Test"
:
#just a test, no message id
return
None
...
...
@@ -224,7 +224,7 @@ class MobytGateway(XMLObject):
elif
result
[
'status'
]
==
"KO"
:
#we get an error when call the gateway
raise
SMSGatewayError
,
urllib
.
unquote
(
result
.
get
(
'status_info'
,
"Impossible to get the message status"
))
raise
SMSGatewayError
(
urllib
.
unquote
(
result
.
get
(
'status_info'
,
"Impossible to get the message status"
)
))
security
.
declarePublic
(
'receive'
)
def
receive
(
self
,
REQUEST
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment