#!/bin/sh
#
# License: MIT (see LICENSE.txt)
# THIS PROGRAM COMES WITH NO WARRANTY
#
# Copyright 2011-2016 Carsten Grohmann
#
# Shell script to start wxGlade
#
# The wxGlade main script is called wxglade.py. It will be searched at
# three places:
#  1. parallel to this script
#  2. in the module directory of the current Python
#  3. in a parallel Python module directory

# Keep this up to date with version.py and sphinx/conf.py
WXG_VERSION="0.9.4"

# exec wxGlade
exec python3 /usr/share/wxglade/wxglade.py "$@"
