This commit is contained in:
Jamie Hardt
2025-05-25 07:16:35 -07:00
parent aa7b418121
commit b0c40ee0b6
2 changed files with 3 additions and 8 deletions

View File

@@ -1,9 +1,3 @@
"""
Parse and convert Pro Tools text exports
"""
__version__ = '2.2.1'
__author__ = 'Jamie Hardt'
__license__ = 'MIT'
__copyright__ = "%s %s (c) 2025 %s. All rights reserved." \
% (__name__, __version__, __author__)

View File

@@ -2,7 +2,8 @@ from optparse import OptionParser, OptionGroup
import datetime
import sys
from ptulsconv import __name__, __copyright__
from ptulsconv import __name__
import ptulsconv
from ptulsconv.commands import convert
from ptulsconv.reporting import print_status_style, \
print_banner_style, print_section_header_style, \
@@ -82,7 +83,7 @@ def main():
parser.add_option_group(informational_options)
print_banner_style(__copyright__)
print_banner_style(ptulsconv.__copyright__)
(options, args) = parser.parse_args(sys.argv)