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)