From 3a326d5b0df9a8aa57a1029089508f96d20d0a4a Mon Sep 17 00:00:00 2001 From: Jamie Madill Date: Mon, 4 Apr 2016 11:20:24 -0400 Subject: Allow vk-generate.py to work in Python 2. There were two places where this script called super, one with Python 2 and 3 compatible syntax and one with Python 3 only. Fix it to use the compatible syntax in both locations. --- vk-generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vk-generate.py b/vk-generate.py index 6f478a6f..860f994d 100755 --- a/vk-generate.py +++ b/vk-generate.py @@ -192,7 +192,7 @@ class WinDefFileSubcommand(Subcommand): else: self.exports = library_exports[self.argv[1]] - super().run() + super(WinDefFileSubcommand, self).run() def generate_copyright(self): return """; THIS FILE IS GENERATED. DO NOT EDIT. -- cgit v1.2.3