mirror of https://github.com/django/django.git
Fixed #19540 -- Stopped using deprecated os.stat_float_times.
This commit is contained in:
parent
424eb67867
commit
cebbec9b61
|
@ -60,9 +60,6 @@ class Command(NoArgsCommand):
|
||||||
self.local = False
|
self.local = False
|
||||||
else:
|
else:
|
||||||
self.local = True
|
self.local = True
|
||||||
# Use ints for file times (ticket #14665), if supported
|
|
||||||
if hasattr(os, 'stat_float_times'):
|
|
||||||
os.stat_float_times(False)
|
|
||||||
|
|
||||||
def set_options(self, **options):
|
def set_options(self, **options):
|
||||||
"""
|
"""
|
||||||
|
@ -231,7 +228,9 @@ Type 'yes' to continue, or 'no' to cancel: """
|
||||||
else:
|
else:
|
||||||
full_path = None
|
full_path = None
|
||||||
# Skip the file if the source file is younger
|
# Skip the file if the source file is younger
|
||||||
if target_last_modified >= source_last_modified:
|
# Avoid sub-second precision (see #14665, #19540)
|
||||||
|
if (target_last_modified.replace(microsecond=0)
|
||||||
|
>= source_last_modified.replace(microsecond=0)):
|
||||||
if not ((self.symlink and full_path
|
if not ((self.symlink and full_path
|
||||||
and not os.path.islink(full_path)) or
|
and not os.path.islink(full_path)) or
|
||||||
(not self.symlink and full_path
|
(not self.symlink and full_path
|
||||||
|
|
Loading…
Reference in New Issue