X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Writers%2Fbkmk_wtxt.py;h=ba2196db138b9ea050ffaa082bef72dffbb64d4e;hb=53d4a2383cfef1310871eefcc14e6e1950b96853;hp=57818d3df1aa9ce0d4e9c8d19c437dc2af3d8a33;hpb=0e76f1851882b99da63a7c8a9e4cdf0c4a48657f;p=bookmarks_db.git diff --git a/Writers/bkmk_wtxt.py b/Writers/bkmk_wtxt.py index 57818d3..ba2196d 100644 --- a/Writers/bkmk_wtxt.py +++ b/Writers/bkmk_wtxt.py @@ -1,15 +1,20 @@ -""" - Dump a bkmk database to a text file +"""Dump a bkmk database to a text file - Written by Broytman. Copyright (C) 2000-2003 PhiloSoft Design +This file is a part of Bookmarks database and Internet robot. """ +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design" +__license__ = "GNU GPL" -ind_s = " "*4 +__all__ = ['writer_txt'] from bkmk_objects import Writer +ind_s = " "*4 + + class writer_txt(Writer): filename = "dump.txt"