CURA-1923: Rename SliceInfoThread to SliceInfoJob

This commit is contained in:
Thomas Karl Pietrowski 2016-07-27 20:39:55 +02:00
parent dd9220068e
commit c7956542c4

View file

@ -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