diff options
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/environment.py b/environment.py index 01c80e9..2fbe652 100755 --- a/environment.py +++ b/environment.py @@ -17,8 +17,8 @@ import subprocess, os.path class EnvironmentException(Exception): - def __init(self, text): - Exception.__init__(self, text) + def __init(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) def detect_c_compiler(execmd): exelist = execmd.split() |