From d7b59b37575a73aa90fe31235ec640e23d07ebf1 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Mon, 12 Jul 2021 15:32:15 +0200 Subject: [PATCH] rust2rpm: use changelog timestamp without time and timezone on Fedora --- rust2rpm/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust2rpm/__main__.py b/rust2rpm/__main__.py index 55ed1b8..673ade7 100644 --- a/rust2rpm/__main__.py +++ b/rust2rpm/__main__.py @@ -371,7 +371,7 @@ def main(): kwargs["generate_buildrequires"] = args.dynamic_buildrequires - if args.target in {"opensuse", "fedora"}: + if args.target in {"opensuse"}: kwargs["date"] = time.strftime("%a %b %d %T %Z %Y") else: kwargs["date"] = time.strftime("%a %b %d %Y")