mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Add missing semi-colons
This commit is contained in:
parent
67c09ebf56
commit
34fe76780e
1 changed files with 4 additions and 4 deletions
|
@ -1322,19 +1322,19 @@ static PyObject *torrent_proxy_settings(PyObject *self, PyObject *args)
|
|||
M_proxy_settings->port = portnum;
|
||||
|
||||
if (peerproxy){
|
||||
M_ses->set_peer_proxy(*M_proxy_settings)
|
||||
M_ses->set_peer_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (webseedproxy){
|
||||
M_ses->set_web_seed_proxy(*M_proxy_settings)
|
||||
M_ses->set_web_seed_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (trackerproxy){
|
||||
M_ses->set_tracker_proxy(*M_proxy_settings)
|
||||
M_ses->set_tracker_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (dhtproxy){
|
||||
M_ses->set_dht_proxy(*M_proxy_settings)
|
||||
M_ses->set_dht_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
Py_INCREF(Py_None); return Py_None;
|
||||
|
|
Loading…
Add table
Reference in a new issue