Release 0.0.8

Fixed:
- Issue #7: fix manually supplied .ird files not being used.
This commit is contained in:
Nichlas Severinsen 2021-11-27 22:22:19 +01:00
parent 52bf2bad01
commit 88d1b48167
6 changed files with 36 additions and 7 deletions

View file

@ -51,10 +51,10 @@ class IRD:
MAGIC_STRING = b'3IRD'
def __init__(self, args):
def __init__(self, ird_path, verbose=False):
"""IRD constructor using args from argparse."""
self.uncompress(args.ird) # TODO: Try/Except?
self.uncompress(ird_path) # TODO: Try/Except?
self.size = core.size(self.TEMP_FILE)
@ -107,7 +107,7 @@ class IRD:
if self.version < 7:
self.uid = core.to_int(input_ird.read(4), self.ORDER)
if args.verbose:
if verbose:
self.print_info()
os.remove(self.TEMP_FILE)