summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index e1f7d019..dbdaa2c2 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -1908,7 +1908,7 @@ def _PostRepoFetch(rp, repo_verify=True, verbose=False):
1908 print("repo version %s is current" % rp.work_git.describe(HEAD)) 1908 print("repo version %s is current" % rp.work_git.describe(HEAD))
1909 1909
1910 1910
1911class _FetchTimes(object): 1911class _FetchTimes:
1912 _ALPHA = 0.5 1912 _ALPHA = 0.5
1913 1913
1914 def __init__(self, manifest): 1914 def __init__(self, manifest):
@@ -1951,7 +1951,7 @@ class _FetchTimes(object):
1951 platform_utils.remove(self._path, missing_ok=True) 1951 platform_utils.remove(self._path, missing_ok=True)
1952 1952
1953 1953
1954class LocalSyncState(object): 1954class LocalSyncState:
1955 _LAST_FETCH = "last_fetch" 1955 _LAST_FETCH = "last_fetch"
1956 _LAST_CHECKOUT = "last_checkout" 1956 _LAST_CHECKOUT = "last_checkout"
1957 1957