summaryrefslogtreecommitdiffstats
path: root/src/target/fake_trx/copyright.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/fake_trx/copyright.py')
-rw-r--r--src/target/fake_trx/copyright.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/target/fake_trx/copyright.py b/src/target/fake_trx/copyright.py
new file mode 100644
index 00000000..3d3597fd
--- /dev/null
+++ b/src/target/fake_trx/copyright.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python2
+# -*- coding: utf-8 -*-
+
+def print_copyright(holders = []):
+ # Print copyright holders if any
+ for date, author in holders:
+ print("Copyright (C) %s by %s" % (date, author))
+
+ # Print the license header itself
+ print("License GPLv2+: GNU GPL version 2 or later " \
+ "<http://gnu.org/licenses/gpl.html>\n" \
+ "This is free software: you are free to change and redistribute it.\n" \
+ "There is NO WARRANTY, to the extent permitted by law.\n")