remove print statement for python 3 compatibility

This commit is contained in:
Josh Holtrop 2011-07-19 16:15:59 -04:00
parent 3f6463b2c0
commit 2ba9e0eac8

4
dwtt
View File

@ -11,10 +11,10 @@ from Config import *
PROGRAM_NAME = 'dwtt'
def usage():
print '''Usage: %s [options] [dbfile]
sys.stdout.write('''Usage: %s [options] [dbfile]
Options:
--help Show this help
''' % PROGRAM_NAME
''' % PROGRAM_NAME)
def main(argv):
dbfile = os.path.expanduser('~/.%s.db' % PROGRAM_NAME)