Skip to content

Commit

Permalink
Version 0.3.7
Browse files Browse the repository at this point in the history
rla2json: fix numeric format bug
  • Loading branch information
mos9527 committed Sep 8, 2024
1 parent fde8937 commit 63f8ed5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sssekai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__VERSION_MAJOR__ = 0
__VERSION_MINOR__ = 3
__VERSION_PATCH__ = 6
__VERSION_PATCH__ = 7

__version__ = '%s.%s.%s' % (__VERSION_MAJOR__,__VERSION_MINOR__,__VERSION_PATCH__)
2 changes: 1 addition & 1 deletion sssekai/entrypoint/rla2json.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def main_rla2json(args):
logger.info('Dumping RLA data with %d processors' % executor._max_workers)
futures = []
for sid in header['splitFileIds']:
sname = 'sekai_%2d_%08d' % (splitSeconds, sid)
sname = 'sekai_%02d_%08d' % (splitSeconds, sid)
script = datas[sname + '.rla']
if args.no_parallel:
worker_job(path.join(args.outdir,sname), version, script)
Expand Down

0 comments on commit 63f8ed5

Please sign in to comment.