#!/bin/bash

# NOTE: This should be called like:
#   $ open -a "Terminal" path/to/UtsusemiPython

_DIR_="$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)"
source "${_DIR_}/_loadenv"
if [ $? -eq 0 ]; then
    #Trick the terminal into staying open after python ends
    /bin/bash 
else
    echo ;
fi
