Compare commits

..

No commits in common. "fba2063bce1c6cb8a959fed8d649fdb8af7422c8" and "f1eb1fe2c65ab9789741f91853939cdfe37d1e86" have entirely different histories.

3 changed files with 2 additions and 5 deletions

View File

@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
setup( setup(
name='worthless', name='worthless',
version='2.2.21', version='2.2.20',
packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'], packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'],
url='https://git.froggi.es/tretrauit/worthless-launcher', url='https://git.froggi.es/tretrauit/worthless-launcher',
license='MIT License', license='MIT License',

0
worthless/cli.py Normal file → Executable file
View File

View File

@ -397,10 +397,7 @@ class Installer:
print("Failed to patch {}, reverting and let the in-game updater do the job...".format( print("Failed to patch {}, reverting and let the in-game updater do the job...".format(
old_file.with_suffix(old_suffix)) old_file.with_suffix(old_suffix))
) )
try: old_file.rename(old_file.with_suffix(old_suffix))
old_file.rename(old_file.with_suffix(old_suffix))
except Exception:
pass
files.remove(patch_file) files.remove(patch_file)
# Limit to 8 process running so it doesn't hang the PC. # Limit to 8 process running so it doesn't hang the PC.