Don't add package ids to commit messages

The package id is already in the name of the file changed, plus it makes most
commit messages too long. Also of little interest to most people.
This commit is contained in:
Daniel Martí 2014-02-10 10:55:29 +01:00
parent dbb7f63906
commit 3f0dbe232c
2 changed files with 4 additions and 4 deletions

View file

@ -175,9 +175,9 @@ def getsrcname(app, build):
def getappname(app):
if app['Name']:
return '%s (%s)' % (app['Name'], app['id'])
return app['Name']
if app['Auto Name']:
return '%s (%s)' % (app['Auto Name'], app['id'])
return app['Auto Name']
return app['id']
def getcvname(app):