On 2/19/11 1:44 AM, Ganesh Kumar wrote:
> os.system("ls -l") & root.destroy
"&" here doesn't do what you think it does. Its a bitwise AND operator,
which is not the same thing as you may be expecting from other languages.
In Python, you'd do something more like:
os.system("ls -l") and root.de
> when user click install, It will start one GUI installation script and
> exit my application
>
> This my task.. The problem was the installation script started but
> control will be transfered to
>
> other window ... when installation finished the GUI application will be
>closed..
>
> c