Merge branch 'master' into grapher

* master:
  PBGitRevList: Fix parsing of date
This commit is contained in:
Pieter de Bie
2008-06-18 01:13:32 +02:00
+1 -1
View File
@@ -63,7 +63,7 @@
newCommit.parents = parents;
newCommit.subject = [components objectAtIndex:2];
newCommit.author = [components objectAtIndex:1];
newCommit.date = [NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:3] intValue]];
newCommit.date = [NSDate dateWithTimeIntervalSince1970:[[components objectAtIndex:4] intValue]];
[newArray addObject: newCommit];
num++;