Update copyright year to 2021

This commit is contained in:
Micah Lee 2021-02-22 13:35:14 -08:00
parent ee20c648c6
commit 2a7d9dbd51
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
41 changed files with 48 additions and 45 deletions

View file

@ -2,7 +2,7 @@
"""
OnionShare | https://onionshare.org/
Copyright (C) 2014-2020 Micah Lee, et al. <micah@micahflee.com>
Copyright (C) 2014-2021 Micah Lee, et al. <micah@micahflee.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -293,7 +293,11 @@ def main(cwd=None):
if mode == "share" or mode == "website":
# Unless you passed in a persistent filename, in which case get the filenames from
# the mode settings
if persistent_filename and not mode_settings.just_created and len(filenames) != 0:
if (
persistent_filename
and not mode_settings.just_created
and len(filenames) != 0
):
filenames = mode_settings.get(mode, "filenames")
else:
@ -321,7 +325,6 @@ def main(cwd=None):
if persistent_filename:
mode_settings.set(mode, "filenames", filenames)
# Create the Web object
web = Web(common, False, mode_settings, mode)