From 728aa1b8f7a1d66bb5870803fc46d05256ac9b42 Mon Sep 17 00:00:00 2001 From: Andrea Lazzarotto Date: Sat, 2 Jan 2021 18:38:57 +0100 Subject: [PATCH] Updated version, shebang and copyright (finished Python 3 tweaks) --- main.py | 8 ++++---- recuperabit/__init__.py | 2 +- recuperabit/fs/__init__.py | 2 +- recuperabit/fs/constants.py | 2 +- recuperabit/fs/core_types.py | 2 +- recuperabit/fs/ntfs.py | 2 +- recuperabit/fs/ntfs_fmt.py | 2 +- recuperabit/logic.py | 2 +- recuperabit/utils.py | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/main.py b/main.py index 949c799..1e64ac2 100755 --- a/main.py +++ b/main.py @@ -1,8 +1,8 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Main RecuperaBit process.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # @@ -34,9 +34,9 @@ from recuperabit.fs.ntfs import NTFSScanner __author__ = "Andrea Lazzarotto" -__copyright__ = "(c) 2014-2017, Andrea Lazzarotto" +__copyright__ = "(c) 2014-2021, Andrea Lazzarotto" __license__ = "GPLv3" -__version__ = "1.1.1" +__version__ = "1.1.2" __maintainer__ = "Andrea Lazzarotto" __email__ = "andrea.lazzarotto@gmail.com" diff --git a/recuperabit/__init__.py b/recuperabit/__init__.py index 7f81275..b1ca9fd 100644 --- a/recuperabit/__init__.py +++ b/recuperabit/__init__.py @@ -1,5 +1,5 @@ # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/fs/__init__.py b/recuperabit/fs/__init__.py index 7f81275..b1ca9fd 100644 --- a/recuperabit/fs/__init__.py +++ b/recuperabit/fs/__init__.py @@ -1,5 +1,5 @@ # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/fs/constants.py b/recuperabit/fs/constants.py index 901ab18..9370a77 100644 --- a/recuperabit/fs/constants.py +++ b/recuperabit/fs/constants.py @@ -1,7 +1,7 @@ """Information needed by multiple plugins.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/fs/core_types.py b/recuperabit/fs/core_types.py index 41345bd..87dda78 100644 --- a/recuperabit/fs/core_types.py +++ b/recuperabit/fs/core_types.py @@ -5,7 +5,7 @@ and DiskScanner classes with subclasses implementing the missing methods.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/fs/ntfs.py b/recuperabit/fs/ntfs.py index fa35b86..b408928 100644 --- a/recuperabit/fs/ntfs.py +++ b/recuperabit/fs/ntfs.py @@ -4,7 +4,7 @@ including MFT entries and directory indexes.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/fs/ntfs_fmt.py b/recuperabit/fs/ntfs_fmt.py index 97172a5..6eeb9b4 100644 --- a/recuperabit/fs/ntfs_fmt.py +++ b/recuperabit/fs/ntfs_fmt.py @@ -1,7 +1,7 @@ """NTFS format descriptors.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/logic.py b/recuperabit/logic.py index c879d2f..6e62fef 100644 --- a/recuperabit/logic.py +++ b/recuperabit/logic.py @@ -1,7 +1,7 @@ """Filesystem-independent algorithmic logic.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. # diff --git a/recuperabit/utils.py b/recuperabit/utils.py index 64ef84b..8676a5c 100644 --- a/recuperabit/utils.py +++ b/recuperabit/utils.py @@ -1,7 +1,7 @@ """Collection of utility functions.""" # RecuperaBit -# Copyright 2014-2017 Andrea Lazzarotto +# Copyright 2014-2021 Andrea Lazzarotto # # This file is part of RecuperaBit. #