Skip to content

Commit 811b52f

Browse files
committed
fix: [tool] link to object template fixed
1 parent 8d08dc5 commit 811b52f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/list_of_objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
#
55
# A simple converter of MISP objects to asciidoctor format
6-
# Copyright (C) 2017-2019 Alexandre Dulaunoy
6+
# Copyright (C) 2017-2021 Alexandre Dulaunoy
77
#
88
# This program is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU Affero General Public License as
@@ -46,5 +46,5 @@
4646
c = json.load(fp)
4747
if not c['description'].endswith('.'):
4848
c['description'] = c['description'] + "."
49-
v = "- [objects/{}](objects/{}/definition.json) - {}".format(c['name'], c['name'], c['description'])
49+
v = "- [objects/{}](https://github.com/MISP/misp-objects/blob/main/objects/{}/definition.json) - {}".format(c['name'], c['name'], c['description'])
5050
print(v)

0 commit comments

Comments
 (0)