Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Smith <mrdoctorwho@gmail.com>2017-02-18 06:47:19 +0300
committerJohn Smith <mrdoctorwho@gmail.com>2017-02-18 06:47:19 +0300
commitba9b8e507690243bd1cf9f20cd927bdc84c1818f (patch)
tree797e333dc487e1c6228e3951a5ababca9e3656ee
parenta4b0730ef2e05356253bfc7105b5e73e8d37edf4 (diff)
Don't use the past date in error reporter
-rw-r--r--gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gateway.py b/gateway.py
index 3c85fed..4400ae3 100644
--- a/gateway.py
+++ b/gateway.py
@@ -863,7 +863,7 @@ def report(message):
LAST_REPORT = message
message = "Critical failure:\n%s" % message
for admin in ADMIN_JIDS:
- sendMessage(admin, TransportID, message, timestamp=-1)
+ sendMessage(admin, TransportID, message)
def computeCapsHash(features=TransportFeatures):