diff options
| author | ?ric Araujo <merwok@netwok.org> | 2011-11-12 03:46:43 +0100 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2011-11-12 03:46:43 +0100 |
| commit | be4115b71e006658b6352559b4e9c8bdb1a48a1c (patch) | |
| tree | b412f9bd3df3b6a300a56d157def7386a9ce3e60 /distutils2/compiler/msvccompiler.py | |
| parent | ab9af202e257d3403cf820e4ec091d768a9ff755 (diff) | |
| download | disutils2-be4115b71e006658b6352559b4e9c8bdb1a48a1c.tar.gz | |
Super considered super.
I think I?ve got all of them (I?ll clean up compat after); if someone
knows a lint tool that can detect missing super calls, please let me
know.
Diffstat (limited to 'distutils2/compiler/msvccompiler.py')
| -rw-r--r-- | distutils2/compiler/msvccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/compiler/msvccompiler.py b/distutils2/compiler/msvccompiler.py index fb4d521..044422b 100644 --- a/distutils2/compiler/msvccompiler.py +++ b/distutils2/compiler/msvccompiler.py @@ -237,7 +237,7 @@ class MSVCCompiler(CCompiler): exe_extension = '.exe' def __init__(self, verbose=0, dry_run=False, force=False): - CCompiler.__init__(self, verbose, dry_run, force) + super(MSVCCompiler, self).__init__(verbose, dry_run, force) self.__version = get_build_version() self.__arch = get_build_architecture() if self.__arch == "Intel": |
