From 17af6d30316ed195f07b8363d2430eb6f4d3e771 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 25 Aug 2013 02:07:28 -0700 Subject: [PATCH] RIP Toolserver Update references to labs --- earwigbot/commands/lag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earwigbot/commands/lag.py b/earwigbot/commands/lag.py index c2e8330..ab30d71 100644 --- a/earwigbot/commands/lag.py +++ b/earwigbot/commands/lag.py @@ -24,7 +24,7 @@ from earwigbot import exceptions from earwigbot.commands import Command class Lag(Command): - """Return the replag for a specific database on the Toolserver.""" + """Return the replag for a specific database on Labs.""" name = "lag" commands = ["lag", "replag", "maxlag"] @@ -45,7 +45,7 @@ class Lag(Command): self.reply(data, msg) def get_replag(self, site): - return "Toolserver replag is {0}".format(self.time(site.get_replag())) + return "Labs replag is {0}".format(self.time(site.get_replag())) def get_maxlag(self, site): return "database maxlag is {0}".format(self.time(site.get_maxlag()))