Skip to content

Commit

Permalink
Nice banner + version bump to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazza committed Sep 9, 2017
1 parent 3aa5ba3 commit 987ab05
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
from recuperabit.fs.ntfs import NTFSScanner

__author__ = "Andrea Lazzarotto"
__copyright__ = "Copyright 2014-2017, Andrea Lazzarotto"
__copyright__ = "(c) 2014-2017, Andrea Lazzarotto"
__license__ = "GPLv3"
__version__ = "1.0"
__version__ = "1.1"
__maintainer__ = "Andrea Lazzarotto"
__email__ = "[email protected]"

Expand Down Expand Up @@ -240,9 +240,13 @@ def main():
"""Wrap the program logic inside a function."""
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)

print 'RecuperaBit', __version__
print __copyright__, '<%s>' % __email__
print 'Released under the', __license__
print " ___ ___ _ _ "
print " | _ \___ __ _ _ _ __ ___ _ _ __ _| _ |_) |_ "
print " | / -_) _| || | '_ \/ -_) '_/ _` | _ \ | _|"
print " |_|_\___\__|\_,_| .__/\___|_| \__,_|___/_|\__|"
print " |_| v{}".format(__version__)
print ' ', __copyright__, '<%s>' % __email__
print ' Released under the', __license__
print ''

parser = argparse.ArgumentParser(
Expand Down

0 comments on commit 987ab05

Please sign in to comment.