From bd3f979b56b0e612fd636fcb5b91a11ae5b8db0d Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Fri, 23 May 2014 13:39:08 -0700 Subject: [PATCH] capitalize AMQP in description --- bin/queue-url | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/queue-url b/bin/queue-url index de570fd..272c2e7 100755 --- a/bin/queue-url +++ b/bin/queue-url @@ -1,5 +1,6 @@ #!/usr/bin/env python # vim: set sw=4 et: + import os import sys import argparse @@ -7,7 +8,7 @@ import logging from kombu import Connection, Exchange, Queue arg_parser = argparse.ArgumentParser(prog=os.path.basename(sys.argv[0]), - description='queue-url - send url to umbra via amqp', + description='queue-url - send url to umbra via AMQP', formatter_class=argparse.ArgumentDefaultsHelpFormatter) arg_parser.add_argument('-u', '--url', dest='amqp_url', default='amqp://guest:guest@localhost:5672/%2f', help='URL identifying the AMQP server to talk to')