Skip to content

Commit

Permalink
Include version string in all outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed Nov 6, 2022
1 parent 21c32e2 commit fbc7531
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ptulsconv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from ptulsconv.docparser.ptuls_grammar import protools_text_export_grammar

__version__ = '1.0.0'
__version__ = '1.0.1'
__author__ = 'Jamie Hardt'
__license__ = 'MIT'
__copyright__ = "%s %s (c) 2022 %s. All rights reserved." % (__name__, __version__, __author__)
5 changes: 3 additions & 2 deletions ptulsconv/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import datetime
import sys

from ptulsconv import __name__, __version__, __author__
from ptulsconv import __name__, __version__, __author__,__copyright__
from ptulsconv.commands import convert
from ptulsconv.reporting import print_status_style, print_banner_style, print_section_header_style, print_fatal_error

Expand Down Expand Up @@ -59,9 +59,10 @@ def main():

parser.add_option_group(informational_options)

print_banner_style(__copyright__)

(options, args) = parser.parse_args(sys.argv)

print_banner_style("%s %s (c) 2022 %s. All rights reserved." % (__name__, __version__, __author__))

print_section_header_style("Startup")
print_status_style("This run started %s" % (datetime.datetime.now().isoformat()))
Expand Down

0 comments on commit fbc7531

Please sign in to comment.