Changeset 166

Show
Ignore:
Timestamp:
Sun May 20 12:25:00 2007
Author:
manatlan
Message:

- unicode date strign in the liststore of "time tab"

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/jbrout.py

    r164 r166  
    355 355             node = jour[i]  
    356 356             d= datetime.datetime(int(i[:4]),int(i[4:6]),int(i[6:8]))  
    357               date = d.strftime("%A %d")  
      357             date = u"%s %s" % (d.strftime("%A"),d.strftime("%d"))   # ensure unicode  
    357 357             ymd = d.strftime("%Y%m%d")  
    358 358             self.append(None,[date,node.getThumb().scale_simple(80,80,gtk.gdk.INTERP_NEAREST),ymd])