mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
CURA-1923: Rename SliceInfoThread to SliceInfoJob
This commit is contained in:
parent
dd9220068e
commit
c7956542c4
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ import ssl
|
|||
|
||||
catalog = i18nCatalog("cura")
|
||||
|
||||
class SliceInfoThread(Job):
|
||||
class SliceInfoJob(Job):
|
||||
data = None
|
||||
url = None
|
||||
|
||||
|
@ -140,7 +140,7 @@ class SliceInfo(Extension):
|
|||
binary_data = submitted_data.encode("utf-8")
|
||||
|
||||
# Sending slice info non-blocking
|
||||
reportJob = SliceInfoThread(self.info_url, binary_data)
|
||||
reportJob = SliceInfoJob(self.info_url, binary_data)
|
||||
reportJob.start()
|
||||
except:
|
||||
# We really can't afford to have a mistake here, as this would break the sending of g-code to a device
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue