diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-23 02:06:48 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-23 02:06:48 +0100 |
commit | 4b5752996161ee2673fb5974d0fa2db1bf706367 (patch) | |
tree | 7df2da19a89372fb65b45be7f78fa83d25c24e23 | |
parent | 3be22037d6bea8a4cec036839018bb649c436108 (diff) |
fix typov1.1805
-rwxr-xr-x | src/backend/libsisyphus.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index cfd93a8..ac7d7b2 100755 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -145,9 +145,9 @@ def syncAll(): remoteDscsTS = int(parser.parse(reqRemoteDscsTS.headers['last-modified']).strftime("%s")) localDscsTS = int(os.path.getctime(remoteDscsDB)) - if remotePkgsTs < localPkgsTs: + if remotePkgsTS < localPkgsTS: pass - elif remoteDscsTs < localDscsTs: + elif remoteDscsTS < localDscsTS: pass else: syncPortageTree() |