From c7956542c41499a22a8efabbf700c2a542967259 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Wed, 27 Jul 2016 20:39:55 +0200 Subject: [PATCH] CURA-1923: Rename SliceInfoThread to SliceInfoJob --- plugins/SliceInfoPlugin/SliceInfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 1324f60948..5630f76805 100644 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -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