[go: up one dir, main page]

Menu

[r98]: / note / trunk / lib / main.py  Maximize  Restore  History

Download this file

13 lines (9 with data), 224 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/usr/bin/python
import window
try:
from Tkinter import *
except ImportError:
print "You havn't installed python-tk. Can't start sPOP Note"
print "Starting sPOP Note"
window.Window()
print "Closed sPOP Note"