summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-10-19 17:20:35 +0000
committerChris Lumens <clumens@redhat.com>2005-10-19 17:20:35 +0000
commitbdc9054cb63783e056764f66e915dd2f07a65731 (patch)
treefd77f3f241c59c934338f3056593e92c604471a1 /gui.py
parent608513bbcb45fd589a8cc43da67fefaa86ff639f (diff)
downloadanaconda-bdc9054cb63783e056764f66e915dd2f07a65731.tar.gz
anaconda-bdc9054cb63783e056764f66e915dd2f07a65731.tar.xz
anaconda-bdc9054cb63783e056764f66e915dd2f07a65731.zip
Add support for copying backtraces to remote hosts to the text interface.
Also make the cancel buttons go back to the main exception window screen.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 1fc2f1454..724944cbe 100755
--- a/gui.py
+++ b/gui.py
@@ -538,7 +538,7 @@ class ProgressWindow:
rootPopBusyCursor()
class ScpWindow:
- def __init__(self):
+ def __init__(self, screen=None):
self.scpxml = gtk.glade.XML(findGladeFile("scp.glade"),
domain="anaconda")
self.win = self.scpxml.get_widget("saveRemoteDlg")
@@ -565,7 +565,7 @@ class ScpWindow:
self.window.destroy()
class ExceptionWindow:
- def __init__ (self, shortTraceback, longTracebackFile=None):
+ def __init__ (self, shortTraceback, longTracebackFile=None, screen=None):
# Get a bunch of widgets from the XML file.
exnxml = gtk.glade.XML(findGladeFile("exn.glade"), domain="anaconda")
self.win = exnxml.get_widget("exnDialog")