diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-30 03:20:53 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-30 03:20:53 +0200 |
commit | 409ba33f485dca1c62b50c0fa87b14ae1eda2753 (patch) | |
tree | 6085c78c4508cbbba6acb2db927e52aab6faa731 /environment.py | |
parent | fef984be6f645bb8d9e83aa208c576055502c599 (diff) | |
download | meson-409ba33f485dca1c62b50c0fa87b14ae1eda2753.zip meson-409ba33f485dca1c62b50c0fa87b14ae1eda2753.tar.gz meson-409ba33f485dca1c62b50c0fa87b14ae1eda2753.tar.bz2 |
Can do method calls on objects.
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() |