Skip to content

Commit

Permalink
Update pycatfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski authored Nov 23, 2024
1 parent c865ede commit 3352479
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pycatfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
$FileInfo: pycatfile.py - Last Update: 11/22/2024 Ver. 0.14.8 RC 1 - Author: cooldude2k $
$FileInfo: pycatfile.py - Last Update: 11/23/2024 Ver. 0.14.10 RC 1 - Author: cooldude2k $
'''

from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
Expand Down Expand Up @@ -296,12 +296,12 @@ def get_importing_script_path():
'format_delimiter': __file_format_delimiter__, 'format_ver': __file_format_ver__, 'new_style': __use_new_style__, 'use_advanced_list': __use_advanced_list__, 'use_alt_inode': __use_alt_inode__}
__project__ = __program_name__
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
__version_info__ = (0, 14, 8, "RC 1", 1)
__version_date_info__ = (2024, 22, 17, "RC 1", 1)
__version_info__ = (0, 14, 10, "RC 1", 1)
__version_date_info__ = (2024, 23, 17, "RC 1", 1)
__version_date__ = str(__version_date_info__[0]) + "." + str(
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
__revision__ = __version_info__[3]
__revision_id__ = "$Id: 56e05e541e9319a27611bee3b55de8c59c7923cd $"
__revision_id__ = "$Id$"
if(__version_info__[4] is not None):
__version_date_plusrc__ = __version_date__ + \
"-" + str(__version_date_info__[4])
Expand Down

0 comments on commit 3352479

Please sign in to comment.