From f71d691f808e0aeaaceb1cec5ae216e9cc27b8df Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 27 Mar 2008 15:36:03 -0400 Subject: Add support for saving the exception to a local directory for live installs If you're doing a live install, you often won't have removable media inserted but you _can_ just save the exception somewhere and then report it. So let's take advantage of that. Not implemented for text mode as text-mode live installs aren't that relevant --- text.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'text.py') diff --git a/text.py b/text.py index b43a5f707..f780847e1 100644 --- a/text.py +++ b/text.py @@ -238,6 +238,8 @@ class SaveExceptionWindow: def saveToDisk(self): return self.rg.getSelection() == "disk" + def saveToLocal(self): + return False class MainExceptionWindow: def __init__ (self, shortTraceback, longTracebackFile=None, screen=None): -- cgit