Remove unnecessary semicolons.
This commit is contained in:
parent
a7349dc603
commit
381a8f2be8
|
@ -152,7 +152,7 @@ def send_cert(con, jid_from, sid):
|
||||||
certpath = os.path.join(gajim.MY_CERT_DIR, SELF_SIGNED_CERTIFICATE) + \
|
certpath = os.path.join(gajim.MY_CERT_DIR, SELF_SIGNED_CERTIFICATE) + \
|
||||||
'.cert'
|
'.cert'
|
||||||
certificate = read_cert(certpath)
|
certificate = read_cert(certpath)
|
||||||
iq = nbxmpp.Iq('result', to=jid_from);
|
iq = nbxmpp.Iq('result', to=jid_from)
|
||||||
iq.setAttr('id', sid)
|
iq.setAttr('id', sid)
|
||||||
|
|
||||||
pubkey = iq.setTag('pubkeys')
|
pubkey = iq.setTag('pubkeys')
|
||||||
|
|
|
@ -663,5 +663,5 @@ class HistoryWindow:
|
||||||
|
|
||||||
gajim.config.set('history_window_x-position', x)
|
gajim.config.set('history_window_x-position', x)
|
||||||
gajim.config.set('history_window_y-position', y)
|
gajim.config.set('history_window_y-position', y)
|
||||||
gajim.config.set('history_window_width', width);
|
gajim.config.set('history_window_width', width)
|
||||||
gajim.config.set('history_window_height', height);
|
gajim.config.set('history_window_height', height)
|
||||||
|
|
|
@ -166,7 +166,7 @@ class IterableIPShell:
|
||||||
sys.stdout = IPython.utils.io.stdout
|
sys.stdout = IPython.utils.io.stdout
|
||||||
|
|
||||||
orig_stdin = sys.stdin
|
orig_stdin = sys.stdin
|
||||||
sys.stdin = IPython.utils.io.stdin;
|
sys.stdin = IPython.utils.io.stdin
|
||||||
self.prompt = self.generatePrompt(self.iter_more)
|
self.prompt = self.generatePrompt(self.iter_more)
|
||||||
|
|
||||||
self.IP.hooks.pre_prompt_hook()
|
self.IP.hooks.pre_prompt_hook()
|
||||||
|
|
|
@ -57,7 +57,7 @@ def on_suspend(active):
|
||||||
# close the file descriptor and let the computer suspend
|
# close the file descriptor and let the computer suspend
|
||||||
if fd >= 0:
|
if fd >= 0:
|
||||||
os.close(fd)
|
os.close(fd)
|
||||||
fd = -1;
|
fd = -1
|
||||||
else:
|
else:
|
||||||
# something is wrong, the system is suspending but we don't have
|
# something is wrong, the system is suspending but we don't have
|
||||||
# a lock file
|
# a lock file
|
||||||
|
|
Loading…
Reference in New Issue