#!/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="1.1.1"

CURR_DIR=$(dirname "$0")

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