Skip to content

Commit eedf67a

Browse files
author
Bono
committed
Change format(id=id) to % id for consistency
1 parent 966430d commit eedf67a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xolphin/endpoint/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def retry_dcv(self, id, domain, dcv_type, email=''):
4545
}))
4646

4747
def send_subscriber_agreement(self, id, email, language='nl'):
48-
return Base(self.client.post('requests/{id}/sa'.format(id=id), {
48+
return Base(self.client.post('requests/%d/sa' % id, {
4949
'email': email,
5050
'language': language
5151
}))

0 commit comments

Comments
 (0)