diff options
author | Alberto Gonzalez Iniesta <agi@inittab.org> | 2012-02-21 15:53:40 +0100 |
---|---|---|
committer | Alberto Gonzalez Iniesta <agi@inittab.org> | 2012-02-21 15:53:40 +0100 |
commit | 349cfa7acb95abe865209a28e417ec74b56f9bba (patch) | |
tree | ad65334821b587c4ecdd461be84c94305ffdb888 /win/config_all.py |
Imported Upstream version 2.2.1upstream/2.2.1
Diffstat (limited to 'win/config_all.py')
-rw-r--r-- | win/config_all.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/win/config_all.py b/win/config_all.py new file mode 100644 index 0000000..ba6affe --- /dev/null +++ b/win/config_all.py @@ -0,0 +1,13 @@ +from config import main as config_main +from config_tap import main as config_tap +from config_ti import main as config_ti + +def main(config): + config_main(config) + config_tap(config) + config_ti(config) + +# if we are run directly, and not loaded as a module +if __name__ == "__main__": + from wb import config + main(config) |