diff options
author | Bill Nottingham <notting@redhat.com> | 2002-07-11 01:16:31 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-07-11 01:16:31 +0000 |
commit | f58773416cd9926a203d0680040c6599e9623a07 (patch) | |
tree | 8f972c16873edfceb9bff4f492d73328b83455cb /exception.py | |
parent | 86c9fa5dd95d333dd91d74c7d51552fa60920a15 (diff) | |
download | anaconda-f58773416cd9926a203d0680040c6599e9623a07.tar.gz anaconda-f58773416cd9926a203d0680040c6599e9623a07.tar.xz anaconda-f58773416cd9926a203d0680040c6599e9623a07.zip |
fix speling (#68541)
Diffstat (limited to 'exception.py')
-rw-r--r-- | exception.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exception.py b/exception.py index 71c0ef3aa..8d31d6b8a 100644 --- a/exception.py +++ b/exception.py @@ -139,7 +139,7 @@ def dumpException(out, text, tb, dispatch): out.write("\n\n") dumpClass(dispatch, out) except: - out.write("\nException occured during state dump:\n") + out.write("\nException occurred during state dump:\n") traceback.print_exc(None, out) for file in ("/tmp/syslog", "/tmp/anaconda.log", "/tmp/netinfo", @@ -155,7 +155,7 @@ def dumpException(out, text, tb, dispatch): except IOError: pass except: - out.write("\nException occured during %s file copy:\n" % (file,)) + out.write("\nException occurred during %s file copy:\n" % (file,)) traceback.print_exc(None, out) def handleException(dispatch, intf, (type, value, tb)): |