From 57235cad7a65cd84dcb65e314276a0cbc849e1b7 Mon Sep 17 00:00:00 2001 From: James Laska Date: Wed, 29 Jan 2014 14:04:31 -0500 Subject: [PATCH] Remove 'awx-' prefix when reporting version --- awx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/__init__.py b/awx/__init__.py index 6a23bcf9b0..5633508baa 100644 --- a/awx/__init__.py +++ b/awx/__init__.py @@ -71,6 +71,6 @@ def manage(): # Now run the command (or display the version). from django.core.management import execute_from_command_line if len(sys.argv) >= 2 and sys.argv[1] in ('version', '--version'): - sys.stdout.write('awx-%s\n' % __version__) + sys.stdout.write('%s\n' % __version__) else: execute_from_command_line(sys.argv)