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.
done < "$file"
if [ -n "$name" ]; then
- fullname="$name ($id)"
+ fullname="$name"
elif [ -n "$autoname" ]; then
- fullname="$autoname ($id)"
+ fullname="$autoname"
else
fullname="$id"
fi
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):