~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to graph.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-22 23:08:00 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: john@arbash-meinel.com-20050922230800-49074635850e0552
Fix datestamp, reuse pre-layed out dot file.

Show diffs side-by-side

added added

removed removed

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