From 49056cac7d47dc15e74b88cbe5260f2d83d60899 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Fri, 27 Mar 2009 11:18:54 +0000 Subject: [PATCH] fix mac osx python bindings --- bindings/python/ns3modulegen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/ns3modulegen.py b/bindings/python/ns3modulegen.py index 12363b1e4..50f6f2653 100755 --- a/bindings/python/ns3modulegen.py +++ b/bindings/python/ns3modulegen.py @@ -145,6 +145,7 @@ def main(): if 'TapBridge' not in enabled_features: for clsname in ['TapBridge', 'TapBridgeHelper']: root_module.classes.remove(root_module['ns3::%s' % clsname]) + root_module.enums.remove(root_module['ns3::TapBridge::Mode']) root_module.generate(out, '_ns3')