* bin/svndbadmin

(SvnRev.__init__): Don't use secs_from_timestr() -- it never
    learned to accept optional pools.  Do the math ourselves.


git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1556 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/options-overhaul
cmpilato 2007-03-29 06:00:04 +00:00
parent 4ee8ea34e1
commit 9672b6d711
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class SvnRev:
# convert the date string to seconds since epoch ...
try:
self.date = svn.core.secs_from_timestr(self.date)
self.date = svn.core.svn_time_from_cstring(self.date) / 1000000
except:
self.date = None