summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-03-27 15:36:03 -0400
committerJeremy Katz <katzj@redhat.com>2008-03-27 15:36:03 -0400
commitf71d691f808e0aeaaceb1cec5ae216e9cc27b8df (patch)
tree38b6346a0b4bdfb35dbd28a32eca22afa57a10b2 /text.py
parent0de6e488fc0919d97d094f65d91da0f66c02b04e (diff)
downloadanaconda-f71d691f808e0aeaaceb1cec5ae216e9cc27b8df.tar.gz
anaconda-f71d691f808e0aeaaceb1cec5ae216e9cc27b8df.tar.xz
anaconda-f71d691f808e0aeaaceb1cec5ae216e9cc27b8df.zip
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
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 2 insertions, 0 deletions
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):