~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to graph.py

  • Committer: Aaron Bentley
  • Date: 2005-09-23 13:26:44 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050923132644-401309cdadc34ec0
Restored slashes in date, because my rsvg-bin is borken wrt hyphens

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
        if rev.message is not None:
83
83
            message = rev.message.split('\n')[0]
84
84
        gmtime = time.gmtime(rev.timestamp + (rev.timezone or 0))
85
 
        date = time.strftime('%Y-%m-%d', gmtime)
 
85
        date = time.strftime('%Y/%m/%d', gmtime)
86
86
    if '@' in committer:
87
87
        try:
88
88
            committer = mail_map[committer]