~kiithsacmp/icrush/tkinter-gui

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python

# Copyright (C) 2009 Ferdinand Majerech
# This file is part of IMGCrush GUI
# For conditions of distribution and use, see copyright notice in LICENSE.txt 
                                           
import sys
from imgcrush_gui import gui
        
def main():
    GUI = gui.GUI()

if __name__ == "__main__":
    main()