From 804ef551925abe8dbf5a472c7c4e0027f37c6d72 Mon Sep 17 00:00:00 2001 From: oysteini Date: Sat, 5 Mar 2011 18:07:16 +0000 Subject: [PATCH] Noen TODO-er. --- python/worblehat.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/worblehat.py b/python/worblehat.py index 645ac44..010678d 100755 --- a/python/worblehat.py +++ b/python/worblehat.py @@ -13,6 +13,7 @@ import search def show_book_or_person(ids, commit_format=False, tmp_file=False): for id in ids: object = get_book_or_person(id) + # TODO: skriv ut mer informasjon print object def get_book_or_person(id): @@ -79,12 +80,12 @@ def search_person(search_strings, search_description=False): Q(books__book__id__id__icontains=word)) return remove_duplicates(basic_query.all()) -def commit(filename=None): +def commit(filename=None): # TODO pass def edit_book_or_person(ids): filename = show_book_or_person(ids, commit_format=True, tmp_file=True) -# run_editor(filename) +# run_editor(filename) # TODO: må implementeres commit(filename) commands = { 'show':