From 02df629476130fafa1332225a9635a26b077d50f Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Tue, 5 May 2015 19:44:40 +0000 Subject: [PATCH] Renamed send to sendpendingmessage --- orchestra/bin/orchestra-beat | 2 +- .../management/commands/{send.py => sendpendingmessages.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename orchestra/contrib/mailer/management/commands/{send.py => sendpendingmessages.py} (100%) diff --git a/orchestra/bin/orchestra-beat b/orchestra/bin/orchestra-beat index 5bed7c52..13197f4b 100755 --- a/orchestra/bin/orchestra-beat +++ b/orchestra/bin/orchestra-beat @@ -120,7 +120,7 @@ def fire_pending_messages(settings, db): return bool(db.query(query)) if has_pending_messages(settings, db): - command = 'python3 -W ignore::DeprecationWarning {manage} send'.format(manage=manage) + command = 'python3 -W ignore::DeprecationWarning {manage} sendpendingmessages'.format(manage=manage) proc = run(command, async=True) yield proc diff --git a/orchestra/contrib/mailer/management/commands/send.py b/orchestra/contrib/mailer/management/commands/sendpendingmessages.py similarity index 100% rename from orchestra/contrib/mailer/management/commands/send.py rename to orchestra/contrib/mailer/management/commands/sendpendingmessages.py