1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-23 22:58:53 +02:00

- renamed "RuntimeError" to "ExtRuntimeError" to avoid confusion with python's "RuntimeError" class

just a "cosmetic" changes
This commit is contained in:
Marcus Huewe
2010-08-16 16:27:00 +02:00
parent 03ad610caf
commit e209766084
4 changed files with 8 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ class NoConfigfile(OscBaseError):
self.file = fname
self.msg = msg
class RuntimeError(OscBaseError):
class ExtRuntimeError(OscBaseError):
"""Exception raised when there is a runtime error of an external tool"""
def __init__(self, msg, fname):
OscBaseError.__init__(self)