Skip to content

Commit

Permalink
fix: export and extract folders in temp pyinstaller folder
Browse files Browse the repository at this point in the history
  • Loading branch information
lmh committed Mar 21, 2021
1 parent 5353935 commit 4d7a918
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mbzbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def __init__(self,config=None):
self.zipdir = os.path.abspath(config['zipdir'])
if 'rootdir' in config.keys():
self.rootdir = os.path.abspath(config["rootdir"])
self.extractroot = os.path.abspath(self.rootdir + '/extract')
self.exportroot = os.path.abspath(self.rootdir + '/export')
self.extractmbz(os.path.splitext(os.path.abspath(config['file']))[0]+'.mbz')
else:
self.parser = argparse.ArgumentParser()
Expand Down

0 comments on commit 4d7a918

Please sign in to comment.