ocarina/src/core/cline/message.py

16 lines
296 B
Python

#! /usr/bin/python
# To change this template, choose Tools | Templates
# and open the template in the editor.
__author__="bjschuma"
__date__ ="$Dec 19, 2009 11:57:19 PM$"
import settings
def insert(string, y):
stdscr = settings.get("stdscr")
stdscr.deleteln()
stdscr.addstr(y, 0, string)