Remove 'awx-' prefix when reporting version

This commit is contained in:
James Laska 2014-01-29 14:04:31 -05:00
parent 597a81ead6
commit 57235cad7a

View File

@ -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)