Change a param in WavInfoReader's __init__

It makes more sense this way but it breaks everything
prior to this version.
This commit is contained in:
Jamie Hardt
2023-11-08 17:58:00 -08:00
parent c25ac56555
commit 41b84b8399
2 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ def main():
(options, args) = parser.parse_args(sys.argv)
for arg in args[1:]:
try:
this_file = WavInfoReader(path=arg)
this_file = WavInfoReader(f=arg)
if options.adm:
if this_file.adm:
sys.stdout.write(this_file.adm.xml_str())