diff options
| author | Jeremy Katz <katzj@redhat.com> | 2004-08-26 19:21:41 +0000 |
|---|---|---|
| committer | Jeremy Katz <katzj@redhat.com> | 2004-08-26 19:21:41 +0000 |
| commit | b06e2353af86ee4dbc2c170bb07ed6f60c2baed4 (patch) | |
| tree | 42552ab49e35464e8b53c3ef4663a140d07b422e /text.py | |
| parent | 5a40e536390a8103eff7fe532232441123af1214 (diff) | |
don't log the parted exceptions we can't do anything about
Diffstat (limited to 'text.py')
| -rw-r--r-- | text.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -328,9 +328,9 @@ class InstallInterface: def partedExceptionWindow(self, exc): # if our only option is to cancel, let us handle the exception # in our code and avoid popping up the exception window here. - log("parted exception: %s: %s" %(exc.type_string,exc.message)) if exc.options == parted.EXCEPTION_CANCEL: return parted.EXCEPTION_UNHANDLED + log("parted exception: %s: %s" %(exc.type_string,exc.message)) buttons = [] buttonToAction = {} flags = ((parted.EXCEPTION_FIX, N_("Fix")), |
