mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 13:42:48 +00:00
Update pymake to pick up bug 832472.
This commit is contained in:
parent
aea9815d21
commit
ef6314f596
@ -40,7 +40,8 @@ def mtimeislater(deptime, targettime):
|
||||
return True
|
||||
if targettime is None:
|
||||
return False
|
||||
return deptime > targettime
|
||||
# int(1000*x) because of http://bugs.python.org/issue10148
|
||||
return int(1000 * deptime) > int(1000 * targettime)
|
||||
|
||||
def getmtime(path):
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user