mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Remove unneeded ()
CURA-7689
This commit is contained in:
parent
358ba8c34a
commit
3436a2171e
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class FirmwareUpdateCheckerJob(Job):
|
|||
# The first time we want to store the current version, the notification will not be shown,
|
||||
# because the new version of Cura will be release before the firmware and we don't want to
|
||||
# notify the user when no new firmware version is available.
|
||||
if (checked_version != "") and (checked_version != current_version):
|
||||
if checked_version != "" and checked_version != current_version:
|
||||
Logger.log("i", "Showing firmware update message for new version: {version}".format(version = current_version))
|
||||
message = FirmwareUpdateCheckerMessage(machine_id, self._machine_name, current_version,
|
||||
self._lookups.getRedirectUserUrl())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue