mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Remove all f-strings due to some errors
This commit is contained in:
+3
-3
@@ -52,11 +52,11 @@ class Updater:
|
||||
print("")
|
||||
current_version = self.get_current_version()
|
||||
latest_version = self.get_latest_version()
|
||||
print(f"Current script version: {current_version}")
|
||||
print(f"Latest script version: {latest_version}")
|
||||
print("Current script version: {}".format(current_version))
|
||||
print("Latest script version: {}".format(latest_version))
|
||||
print("")
|
||||
if latest_version > current_version:
|
||||
print(f"Updating from version {current_version} to {latest_version}\n")
|
||||
print("Updating from version {} to {}\n".format(current_version, latest_version))
|
||||
self.download_update()
|
||||
self.update_files()
|
||||
print("\n\n{}\n".format(self.utils.message("The program needs to restart to complete the update process.", "reminder")))
|
||||
|
||||
Reference in New Issue
Block a user