Bump copyright year and add missing file headers

This commit is contained in:
2026-01-02 10:58:27 +01:00
parent 4dcab777ca
commit 941c467fc2
7 changed files with 12 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2025 Paul Retourné # Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
import argparse import argparse
@@ -11,7 +11,7 @@ def create_argparser(sync_function, add_function, mount_function) -> argparse.Ar
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
prog='unisync', prog='unisync',
description='File synchronisation application', description='File synchronisation application',
epilog="Copyright © 2025 Paul Retourné.\n" epilog="Copyright © 2025-2026 Paul Retourné.\n"
"License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.", "License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.",
formatter_class=argparse.RawDescriptionHelpFormatter formatter_class=argparse.RawDescriptionHelpFormatter
) )

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2025 Paul Retourné # Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
from configparser import UNNAMED_SECTION from configparser import UNNAMED_SECTION

View File

@@ -1,3 +1,6 @@
# Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later
class RemoteMountedError(BaseException): class RemoteMountedError(BaseException):
pass pass

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2025 Paul Retourné # Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
import os import os

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2025 Paul Retourné # Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later

View File

@@ -1,3 +1,6 @@
# Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later
from synchroniser import Synchroniser from synchroniser import Synchroniser
from paths import PathsManager from paths import PathsManager

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2025 Paul Retourné # Copyright (C) 2025-2026 Paul Retourné
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
import subprocess import subprocess