]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fixed a minor bug.
authorOleg Broytman <phd@phdru.name>
Thu, 11 Oct 2007 10:11:15 +0000 (10:11 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 11 Oct 2007 10:11:15 +0000 (10:11 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@86 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Writers/bkmk_wflad.py

index 0ba70751cfa7693c26f5b965f4f2ef4dbfa9d40f..ace4e735d20946d00cdb145a6cfb72d2b4f70a67 100644 (file)
@@ -1,7 +1,7 @@
 """
    Dump bookmarks db to a more readable FLAD after check_urls
 
-   Written by BroytMann, Apr 2000 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design
+   Written by BroytMann. Copyright (C) 2000-2007 PhiloSoft Design.
 """
 
 
@@ -12,7 +12,7 @@ from bkmk_objects import Writer
 def strftime(s):
    try:
       return time.strftime("%a %d %b %Y %T", time.localtime(int(s)))
-   except ValueError: # s is already formatted
+   except (TypeError, ValueError): # s is None or is already formatted
       return s