From a8f4bda238399b8dc761a16c0da60eb6a87ea37e Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 16 Jul 2008 15:18:38 -0400 Subject: Fix a traceback when trying to save exceptiona via scp. --- exception.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'exception.py') diff --git a/exception.py b/exception.py index ec9d3e171..5a41e9e09 100644 --- a/exception.py +++ b/exception.py @@ -23,6 +23,7 @@ # from constants import * +from network import hasActiveNetDev import isys import sys import os @@ -375,7 +376,7 @@ def runSaveDialog(anaconda, longTracebackFile): "disk.")) continue else: - if not network.hasActiveNetDev() and not anaconda.intf.enableNetwork(anaconda): + if not hasActiveNetDev() and not anaconda.intf.enableNetwork(anaconda): scpSucceeded = False else: scpInfo = saveWin.getDest() -- cgit