diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-07 15:39:53 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-07 17:03:00 -0500 |
commit | 01db07bad844e17e084f650b6732647f77a91c5c (patch) | |
tree | 3260bae1697f2aaac5140f20ea9d0e30953a5be7 /packages | |
parent | 7d08d59280dc4ddbe43f277e177bce683dd51188 (diff) |
Use UTC datetime objects everywhere
Rather than the twisted mix of local times and UTC times we currently have.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/views.py b/packages/views.py index 2f614e34..1587563b 100644 --- a/packages/views.py +++ b/packages/views.py @@ -371,7 +371,7 @@ def flag(request, name, repo, arch): # find all packages from (hopefully) the same PKGBUILD pkgs = Package.objects.filter( pkgbase=pkg.pkgbase, repo__testing=pkg.repo.testing) - pkgs.update(flag_date=datetime.now()) + pkgs.update(flag_date=datetime.utcnow()) maints = pkg.maintainers if not maints: |