From b63bfc70b3d29beef035bad2b558f14f0afe6325 Mon Sep 17 00:00:00 2001 From: tmpz23 <28760271+tmpz23@users.noreply.github.com> Date: Mon, 11 Apr 2022 22:09:00 +0200 Subject: [PATCH] Update afstool.py --- afstool/afstool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/afstool/afstool.py b/afstool/afstool.py index 634ee0a..db1fbf4 100644 --- a/afstool/afstool.py +++ b/afstool/afstool.py @@ -9,7 +9,7 @@ import re import time -__version__ = "0.1.1" +__version__ = "0.1.2" __author__ = "rigodron, algoflash, GGLinnk" __license__ = "MIT" __status__ = "developpement" @@ -296,7 +296,7 @@ class Afs: config = ConfigParser(allow_no_value=True) # allow_no_value to allow adding comments config.optionxform = str # makes options case sensitive config.add_section("Default") - config.set("Default", "# Documentation available here: https://github.com/Virtual-World-RE/NeoGF/blob/main/README.md#afs_rebuildconf--afs_rebuildcsv") + config.set("Default", "# Documentation available here: https://github.com/Virtual-World-RE/NeoGF/tree/main/afstool#afs_rebuildconf") config.set("Default", "AFS_MAGIC", f"0x{self.__get_magic().hex()}") config.set("Default", "files_rebuild_strategy", "mixed") config.set("Default", "filename_directory", "True" if self.__filenamedirectory else "False")