Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Adrián Ribao
Cartero
Commits
6d517b90
Commit
6d517b90
authored
Feb 15, 2013
by
Adrián Ribao
Browse files
fix format for python 2.6
parent
2edce429
Changes
1
Hide whitespace changes
Inline
Side-by-side
cartero/models.py
View file @
6d517b90
...
@@ -126,7 +126,7 @@ class Campaign(models.Model):
...
@@ -126,7 +126,7 @@ class Campaign(models.Model):
@
property
@
property
def
rate_limit
(
self
):
def
rate_limit
(
self
):
return
'{}/{}'
.
format
(
self
.
rate_limit_amount
,
self
.
rate_limit_interval
)
return
'{
0
}/{
1
}'
.
format
(
self
.
rate_limit_amount
,
self
.
rate_limit_interval
)
def
add_contacts
(
self
,
contacts
):
def
add_contacts
(
self
,
contacts
):
"""
"""
...
...
Write
Preview
Supports
Markdown
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