Changed the default link from git repository to homepage

pull/15/head
Tullio Facchinetti 1 year ago
parent a4a8a67d74
commit a62aa420ad

File diff suppressed because it is too large Load Diff

@ -33,9 +33,9 @@ def load_csv(file_name):
def fmt_app(app):
descr = ''.join(c if c != '\n' else ' ' for c in app['description'])
if app['git'] != '':
if app['homepage'] != '':
st = '* [{}]({}) - {}'.format(app['name'], app['git'], descr)
elif app['homepage'] != '':
elif app['git'] != '':
st = '* [{}]({}) - {}'.format(app['name'], app['homepage'], descr)
else:
st = '* {} - {}'.format(app['name'], descr)

Loading…
Cancel
Save