# HG changeset patch # User Kim Alvefur # Date 1446572075 -3600 # Node ID 3eedbb76e3f2fa717208e0b4b823fad736505831 # Parent afc7765827be5ad455d0e6d35082b98b07fe5fdb scansion.objects.client: Split long line into one statement per line diff -r afc7765827be -r 3eedbb76e3f2 scansion/objects/client.lua --- a/scansion/objects/client.lua Tue Nov 03 17:37:15 2015 +0100 +++ b/scansion/objects/client.lua Tue Nov 03 18:34:35 2015 +0100 @@ -53,7 +53,12 @@ connects = function (client) local wait, done = async.waiter(); - client.stream:hook("ready", function () client.log"ready" done() client.log("ready done") client.stream.conn:pause() end); + client.stream:hook("ready", function () + client.log"ready" + done() + client.log("ready done") + client.stream.conn:pause() + end); client.stream:connect_client(client.jid, client.password); wait(); client.full_jid = client.stream.jid;