From 832e7e66372e538873b38b020b900a39d03415ff Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Thu, 3 Nov 2016 22:15:40 -0700 Subject: [PATCH] Revert moving projectionInfo out Need to handle this better. :/ --- eos/saveddata/fit.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index baef29d1a..175a012f9 100644 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -466,16 +466,11 @@ class Fit(object): timer = Timer(u'Fit: {}, {}'.format(self.ID, self.name), logger) logger.debug("Starting fit calculation on: %r, withBoosters: %s", self, withBoosters) - try: - projectionInfo = self.getProjectionInfo(targetFit.ID) - except: - pass - else: - logger.debug("ProjectionInfo: %s", projectionInfo) - shadow = False if targetFit: logger.debug("Applying projections to target: %r", targetFit) + projectionInfo = self.getProjectionInfo(targetFit.ID) + logger.debug("ProjectionInfo: %s", projectionInfo) if self == targetFit: copied = self # original fit shadow = True