Update copyright

This commit is contained in:
Nichlas Severinsen 2021-06-02 17:20:01 +02:00
parent 92be492a40
commit 0b236b5530
5 changed files with 6 additions and 6 deletions

View file

@ -108,7 +108,7 @@ This project is Free, Libre, and Open Source Software; FLOSS, licensed under the
See also COPYING or LICENSE.txt See also COPYING or LICENSE.txt
Copyright © 2018 - 2019 Nichlas Severinsen Copyright © 2018 - 2021 Nichlas Severinsen
## Error! ## Error!

View file

@ -1,7 +1,7 @@
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
# libray - Libre Blu-Ray PS3 ISO Tool # libray - Libre Blu-Ray PS3 ISO Tool
# Copyright © 2018 - 2019 Nichlas Severinsen # Copyright © 2018 - 2021 Nichlas Severinsen
# #
# This file is part of libray. # This file is part of libray.
# #

View file

@ -1,7 +1,7 @@
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
# libray - Libre Blu-Ray PS3 ISO Tool # libray - Libre Blu-Ray PS3 ISO Tool
# Copyright © 2018 - 2019 Nichlas Severinsen # Copyright © 2018 - 2021 Nichlas Severinsen
# #
# This file is part of libray. # This file is part of libray.
# #

View file

@ -1,7 +1,7 @@
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
# libray - Libre Blu-Ray PS3 ISO Tool # libray - Libre Blu-Ray PS3 ISO Tool
# Copyright © 2018 - 2019 Nichlas Severinsen # Copyright © 2018 -2021 Nichlas Severinsen
# #
# This file is part of libray. # This file is part of libray.
# #

View file

@ -2,7 +2,7 @@
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
# libray - Libre Blu-Ray PS3 ISO Tool # libray - Libre Blu-Ray PS3 ISO Tool
# Copyright © 2018 - 2019 Nichlas Severinsen # Copyright © 2018 - 2021 Nichlas Severinsen
# #
# This file is part of libray. # This file is part of libray.
# #
@ -43,7 +43,7 @@ if __name__ == '__main__':
optional.add_argument('-d', '--decryption-key', dest='decryption_key', type=str, help='Manually specify key', default='') optional.add_argument('-d', '--decryption-key', dest='decryption_key', type=str, help='Manually specify key', default='')
optional.add_argument('-v', '--verbose', dest='verbose', help='Increase verbosity', action='count') optional.add_argument('-v', '--verbose', dest='verbose', help='Increase verbosity', action='count')
optional.add_argument('-q', '--quiet', dest='quiet', help='Quiet mode, only prints on error', action='store_true') optional.add_argument('-q', '--quiet', dest='quiet', help='Quiet mode, only prints on error', action='store_true')
args = parser.parse_args() args = parser.parse_args()
core.decrypt(args) core.decrypt(args)