mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 17:15:56 +08:00
CURA-1923: Rename SliceInfoThread to SliceInfoJob
This commit is contained in:
parent
dd9220068e
commit
c7956542c4
@ -21,7 +21,7 @@ import ssl
|
|||||||
|
|
||||||
catalog = i18nCatalog("cura")
|
catalog = i18nCatalog("cura")
|
||||||
|
|
||||||
class SliceInfoThread(Job):
|
class SliceInfoJob(Job):
|
||||||
data = None
|
data = None
|
||||||
url = None
|
url = None
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ class SliceInfo(Extension):
|
|||||||
binary_data = submitted_data.encode("utf-8")
|
binary_data = submitted_data.encode("utf-8")
|
||||||
|
|
||||||
# Sending slice info non-blocking
|
# Sending slice info non-blocking
|
||||||
reportJob = SliceInfoThread(self.info_url, binary_data)
|
reportJob = SliceInfoJob(self.info_url, binary_data)
|
||||||
reportJob.start()
|
reportJob.start()
|
||||||
except:
|
except:
|
||||||
# We really can't afford to have a mistake here, as this would break the sending of g-code to a device
|
# We really can't afford to have a mistake here, as this would break the sending of g-code to a device
|
||||||
|
Loading…
x
Reference in New Issue
Block a user