From 47b80b379671500afdb0229d82a32e695b2781f4 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 15 Apr 2011 17:45:48 -0400 Subject: [PATCH] notify user when we're checking remote for updates, because it might take some time to do --- irc/commands/git.py | 1 + 1 file changed, 1 insertion(+) diff --git a/irc/commands/git.py b/irc/commands/git.py index 422cffc..d7e38bd 100644 --- a/irc/commands/git.py +++ b/irc/commands/git.py @@ -144,6 +144,7 @@ def do_pull(): def do_status(): """check whether we have anything to pull""" + actions.reply(data.chan, data.nick, "checking remote for updates...") result = exec_shell("git fetch --dry-run") if not result: actions.reply(data.chan, data.nick, "local copy is up-to-date with remote.")