mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 00:48:41 +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;
|
M_proxy_settings->port = portnum;
|
||||||
|
|
||||||
if (peerproxy){
|
if (peerproxy){
|
||||||
M_ses->set_peer_proxy(*M_proxy_settings)
|
M_ses->set_peer_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (webseedproxy){
|
if (webseedproxy){
|
||||||
M_ses->set_web_seed_proxy(*M_proxy_settings)
|
M_ses->set_web_seed_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trackerproxy){
|
if (trackerproxy){
|
||||||
M_ses->set_tracker_proxy(*M_proxy_settings)
|
M_ses->set_tracker_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dhtproxy){
|
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;
|
Py_INCREF(Py_None); return Py_None;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue