Browse Source

Update copyright year to 2020

pull/1405/head
Safihre 5 years ago
parent
commit
6d8c264e90
  1. 2
      COPYRIGHT.txt
  2. 2
      INSTALL.txt
  3. 2
      LICENSE.txt
  4. 2
      README.mkd
  5. 2
      SABHelper.py
  6. 4
      SABnzbd.py
  7. 2
      interfaces/Config/templates/config.tmpl
  8. 2
      interfaces/Glitter/templates/include_overlays.tmpl
  9. 2
      interfaces/Plush/templates/_inc_modals.tmpl
  10. 2
      po/email/SABemail.pot
  11. 2
      po/main/SABnzbd.pot
  12. 2
      po/nsis/SABnsis.pot
  13. 2
      sabnzbd/__init__.py
  14. 2
      sabnzbd/api.py
  15. 2
      sabnzbd/articlecache.py
  16. 2
      sabnzbd/assembler.py
  17. 2
      sabnzbd/bpsmeter.py
  18. 2
      sabnzbd/cfg.py
  19. 2
      sabnzbd/config.py
  20. 2
      sabnzbd/constants.py
  21. 2
      sabnzbd/database.py
  22. 2
      sabnzbd/decoder.py
  23. 2
      sabnzbd/decorators.py
  24. 2
      sabnzbd/directunpacker.py
  25. 2
      sabnzbd/dirscanner.py
  26. 2
      sabnzbd/downloader.py
  27. 2
      sabnzbd/emailer.py
  28. 2
      sabnzbd/encoding.py
  29. 2
      sabnzbd/getipaddress.py
  30. 2
      sabnzbd/interface.py
  31. 2
      sabnzbd/lang.py
  32. 2
      sabnzbd/misc.py
  33. 2
      sabnzbd/newsunpack.py
  34. 2
      sabnzbd/newswrapper.py
  35. 2
      sabnzbd/notifier.py
  36. 2
      sabnzbd/nzbqueue.py
  37. 2
      sabnzbd/nzbstuff.py
  38. 2
      sabnzbd/osxmenu.py
  39. 2
      sabnzbd/panic.py
  40. 2
      sabnzbd/par2file.py
  41. 2
      sabnzbd/postproc.py
  42. 2
      sabnzbd/powersup.py
  43. 2
      sabnzbd/rss.py
  44. 2
      sabnzbd/sabtray.py
  45. 2
      sabnzbd/sabtraylinux.py
  46. 2
      sabnzbd/scheduler.py
  47. 2
      sabnzbd/skintext.py
  48. 2
      sabnzbd/sorting.py
  49. 2
      sabnzbd/urlgrabber.py
  50. 2
      sabnzbd/utils/rarvolinfo.py
  51. 2
      sabnzbd/utils/servertests.py
  52. 2
      sabnzbd/utils/sleepless.py
  53. 2
      sabnzbd/utils/upload.py
  54. 2
      sabnzbd/zconfig.py
  55. 2
      scripts/Deobfuscate.py
  56. 2
      tests/conftest.py
  57. 2
      tests/test_encoding.py
  58. 2
      tests/test_filesystem.py
  59. 2
      tests/test_functional_config.py
  60. 2
      tests/test_functional_downloads.py
  61. 2
      tests/test_functional_misc.py
  62. 2
      tests/test_getipaddress.py
  63. 2
      tests/test_misc.py
  64. 2
      tests/test_newsunpack.py
  65. 2
      tests/test_rss.py
  66. 2
      tests/test_utils/test_cert_gen.py
  67. 2
      tests/test_utils/test_diskspeed.py
  68. 2
      tests/test_utils/test_happyeyeballs.py
  69. 2
      tests/test_utils/test_internetspeed.py
  70. 2
      tests/test_utils/test_pystone.py
  71. 2
      tests/test_utils/test_sleepless.py
  72. 2
      tests/test_win_utils.py
  73. 2
      tests/testhelper.py
  74. 4
      tools/extract_pot.py
  75. 2
      tools/make_mo.py
  76. 2
      util/apireg.py
  77. 2
      util/mailslot.py
  78. 8
      win/7zip/license.txt

2
COPYRIGHT.txt

@ -1,5 +1,5 @@
(c) Copyright 2007-2019 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
The SABnzbd-team is:

2
INSTALL.txt

@ -4,7 +4,7 @@
0) LICENSE
-------------------------------------------------------------------------------
(c) Copyright 2007-2019 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

2
LICENSE.txt

@ -1,4 +1,4 @@
(c) Copyright 2007-2019 by "The SABnzbd-team" <team@sabnzbd.org>
(c) Copyright 2007-2020 by "The SABnzbd-team" <team@sabnzbd.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

2
README.mkd

@ -36,4 +36,4 @@ Release Notes - SABnzbd 2.3.8
that automatically verify, repair, extract and clean up posts downloaded
from Usenet.
(c) Copyright 2007-2019 by "The SABnzbd-team" \<team@sabnzbd.org\>
(c) Copyright 2007-2020 by "The SABnzbd-team" \<team@sabnzbd.org\>

2
SABHelper.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

4
SABnzbd.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -183,7 +183,7 @@ def print_version():
print(("""
%s-%s
Copyright (C) 2007-2019, The SABnzbd-Team <team@sabnzbd.org>
Copyright (C) 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
SABnzbd comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. It is licensed under the

2
interfaces/Config/templates/config.tmpl

@ -124,7 +124,7 @@
<div class="colmask">
<div class="padding alt">
<h5 class="copyright">Copyright &copy; 2007-2019 The SABnzbd Team &lt;<a href="mailto:team@sabnzbd.org">team@sabnzbd.org</a>&gt;</h5>
<h5 class="copyright">Copyright &copy; 2007-2020 The SABnzbd Team &lt;<a href="mailto:team@sabnzbd.org">team@sabnzbd.org</a>&gt;</h5>
<p class="copyright"><small>$T('yourRights')</small></p>
</div>

2
interfaces/Glitter/templates/include_overlays.tmpl

@ -651,7 +651,7 @@
</tbody>
</table>
<hr/>
<p><small>Copyright (C) 2007-2019, The SABnzbd Team &lt;team@sabnzbd.org&gt;<br/>$T('yourRights') </small></p>
<p><small>Copyright (C) 2007-2020 The SABnzbd Team &lt;team@sabnzbd.org&gt;<br/>$T('yourRights') </small></p>
</div>
</div>
</div>

2
interfaces/Plush/templates/_inc_modals.tmpl

@ -28,7 +28,7 @@
</table>
<div class="sabnzbd_logo main_sprite_container sprite_sabnzbdplus_logo"></div>
<p><strong>SABnzbd $T('version'):</strong> $version</p>
<p><small>Copyright (C) 2008-2019, The SABnzbd Team &lt;team@sabnzbd.org&gt;</small></p>
<p><small>Copyright (C) 2008-2020 The SABnzbd Team &lt;team@sabnzbd.org&gt;</small></p>
<p><small>$T('yourRights')</small></p>
</div>

2
po/email/SABemail.pot

@ -1,6 +1,6 @@
#
# SABnzbd Translation Template file EMAIL
# Copyright 2011-2019 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

2
po/main/SABnzbd.pot

@ -1,6 +1,6 @@
#
# SABnzbd Translation Template file MAIN
# Copyright 2011-2019 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

2
po/nsis/SABnsis.pot

@ -1,6 +1,6 @@
#
# SABnzbd Translation Template file NSIS
# Copyright 2011-2019 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

2
sabnzbd/__init__.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/api.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/articlecache.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/assembler.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/bpsmeter.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/cfg.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/config.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/constants.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/database.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/decoder.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/decorators.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/directunpacker.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/dirscanner.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/downloader.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/emailer.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/encoding.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/getipaddress.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/interface.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/lang.py

@ -1,6 +1,6 @@
#!/usr/bin/python3 -OO
# -*- coding: utf-8 -*-
# Copyright 2011-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2011-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/misc.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/newsunpack.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/newswrapper.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/notifier.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/nzbqueue.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/nzbstuff.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/osxmenu.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/panic.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/par2file.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/postproc.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/powersup.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/rss.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/sabtray.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/sabtraylinux.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/scheduler.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/skintext.py

@ -1,6 +1,6 @@
#!/usr/bin/python3 -OO
# -*- coding: UTF-8 -*-
# Copyright 2012-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2012-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/sorting.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/urlgrabber.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/utils/rarvolinfo.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2009-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2009-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/utils/servertests.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/utils/sleepless.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2009-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2009-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/utils/upload.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2009-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2009-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
sabnzbd/zconfig.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
scripts/Deobfuscate.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/conftest.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_encoding.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_filesystem.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_functional_config.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_functional_downloads.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_functional_misc.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_getipaddress.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_misc.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_newsunpack.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_rss.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_cert_gen.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_diskspeed.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_happyeyeballs.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_internetspeed.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_pystone.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_utils/test_sleepless.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/test_win_utils.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
tests/testhelper.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

4
tools/extract_pot.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2011-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2011-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -31,7 +31,7 @@ with open("sabnzbd/version.py") as version_file:
HEADER = (
r"""#
# SABnzbd Translation Template file __TYPE__
# Copyright 2011-2019 The SABnzbd-Team
# Copyright 2011-2020 The SABnzbd-Team
# team@sabnzbd.org
#
msgid ""

2
tools/make_mo.py

@ -1,6 +1,6 @@
#!/usr/bin/python3 -OO
# -*- coding: utf-8 -*-
# Copyright 2010-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2010-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
util/apireg.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2012-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2012-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

2
util/mailslot.py

@ -1,5 +1,5 @@
#!/usr/bin/python3 -OO
# Copyright 2007-2019 The SABnzbd-Team <team@sabnzbd.org>
# Copyright 2007-2020 The SABnzbd-Team <team@sabnzbd.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

8
win/7zip/license.txt

@ -7,9 +7,9 @@
7-Zip Extra files are under the GNU LGPL license.
Notes:
You can use 7-Zip Extra on any computer, including a computer in a commercial
Notes:
You can use 7-Zip Extra on any computer, including a computer in a commercial
organization. You don't need to register or pay for 7-Zip.
@ -26,6 +26,6 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You can receive a copy of the GNU Lesser General Public License from
You can receive a copy of the GNU Lesser General Public License from
http://www.gnu.org/

Loading…
Cancel
Save