From 491d21302cbb3fc753c1de6b376a9896142fd9cc Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 25 Oct 2013 17:46:02 -0400 Subject: [PATCH] Move zulip_tools library to root of repository. (imported from commit 2fada9d2acbcf81f8e2b3de8caadbf335141dfaa) --- bots/check-rabbitmq-consumers | 2 +- bots/check-rabbitmq-queue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/check-rabbitmq-consumers b/bots/check-rabbitmq-consumers index e34e47b..071d2d5 100755 --- a/bots/check-rabbitmq-consumers +++ b/bots/check-rabbitmq-consumers @@ -7,7 +7,7 @@ from collections import defaultdict from os import path, environ -sys.path.append(path.join(path.dirname(__file__), '../tools')) +sys.path.append(path.join(path.dirname(__file__), '..')) from zulip_tools import check_output states = { diff --git a/bots/check-rabbitmq-queue b/bots/check-rabbitmq-queue index eb0391d..ef57dcb 100755 --- a/bots/check-rabbitmq-queue +++ b/bots/check-rabbitmq-queue @@ -6,7 +6,7 @@ import time from os import path, environ -sys.path.append(path.join(path.dirname(__file__), '../tools')) +sys.path.append(path.join(path.dirname(__file__), '..')) from zulip_tools import check_output WARN_THRESHOLD = 50