Skip to content

Commit

Permalink
Updated version, shebang and copyright (finished Python 3 tweaks)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazza committed Jan 2, 2021
1 parent 3edbc9e commit 728aa1b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down Expand Up @@ -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__ = "[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion recuperabit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# RecuperaBit
# Copyright 2014-2017 Andrea Lazzarotto
# Copyright 2014-2021 Andrea Lazzarotto
#
# This file is part of RecuperaBit.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/fs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# RecuperaBit
# Copyright 2014-2017 Andrea Lazzarotto
# Copyright 2014-2021 Andrea Lazzarotto
#
# This file is part of RecuperaBit.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/fs/constants.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/fs/core_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/fs/ntfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/fs/ntfs_fmt.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""NTFS format descriptors."""

# RecuperaBit
# Copyright 2014-2017 Andrea Lazzarotto
# Copyright 2014-2021 Andrea Lazzarotto
#
# This file is part of RecuperaBit.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/logic.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion recuperabit/utils.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down

0 comments on commit 728aa1b

Please sign in to comment.