summaryrefslogtreecommitdiff
path: root/src/scripts/input.py
blob: 7bac375211d866706befc0cd76df3820d8ca3864 (plain)
1
2
3
4
5
6
7
8
9
import screen

def input_cb(str):
  f = open("/tmp/debug/py", "ab")
  f.write("%s\n" % str)
  f.close()

screen.input("Test:", input_cb, "123")