1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: display GPL-3 from common-licenses on copyright tab
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: not-needed
--- a/ArgsParser.py
+++ b/ArgsParser.py
@@ -46,7 +46,7 @@
if re.match('(?:open|free|net)bsd|linux',sys.platform):
self.paths['main'] = os.path.join(sys.path[0], '..', 'share', 'gitso')
- self.paths['copyright'] = os.path.join(sys.path[0], '..', 'share', 'doc', 'gitso', 'COPYING')
+ self.paths['copyright'] = os.path.join('/usr', 'share', 'common-licenses', 'GPL-3')
elif sys.platform == "darwin":
self.paths['main'] = sys.path[0]
self.paths['copyright'] = os.path.join(sys.path[0], 'COPYING')
|