コード例 #1
0
ファイル: todo.py プロジェクト: carlosduque/poc
def birdseye():
    try:
        import birdseye
    except ImportError:
        print "birdseye.py not found. You may get it from:"
        print "http://todo-py.googlecode.com/svn/trunk/birdseye.py"
        sys.exit()
    archive()
    birdseye.main([TODO_FILE, DONE_FILE])
コード例 #2
0
ファイル: todo.py プロジェクト: dunolie/dunolie-dotfiles
def birdseye():
    try:
        import birdseye
    except ImportError:
        print "birdseye.py not found. You may get it from:"
        print "http://todo-py.googlecode.com/svn/trunk/birdseye.py"
        sys.exit()
    archive()
    birdseye.main([TODO_FILE, DONE_FILE])
コード例 #3
0
ファイル: todo.py プロジェクト: nuance/smarter-todo
def birdseye(args=[]):
    try:
        import birdseye
    except ImportError:
        print "birdseye.py not found. You may get it from:"
        print "http://todotxt.googlecode.com/svn/trunk/birdseye.py"
        sys.exit()
    archive()
    if len(args) != 0:
        args = [TODO_FILE, DONE_FILE, args[0]]
    else:
        args = [TODO_FILE, DONE_FILE]
    birdseye.main(args)