diff --git a/config.py b/config.py index dccedd957..86077a8a0 100644 --- a/config.py +++ b/config.py @@ -4,11 +4,7 @@ import sys debug = False #Path autodetection, only change if it doesn't work - -if hasattr(sys, "frozen"): - path = os.path.dirname(unicode(sys.executable, sys.getfilesystemencoding( ))) -else: - path = os.path.dirname(unicode(__file__, sys.getfilesystemencoding())) +path = os.path.dirname(unicode(__file__, sys.getfilesystemencoding())) homePath = os.path.expanduser(os.path.join("~", ".pyfa")) staticPath = homePath diff --git a/gui/graphFrame.py b/gui/graphFrame.py index b0f565538..c706be6d7 100644 --- a/gui/graphFrame.py +++ b/gui/graphFrame.py @@ -187,7 +187,7 @@ class GraphFrame(wx.Frame): def removeItem(self, event): row, _ = self.fitList.fitList.HitTest(event.Position) if row != -1: - self.fits.remove(row) + del self.fits[row] self.fitList.fitList.update(self.fits) self.draw()