diff options
Diffstat (limited to 'git_config.py')
-rw-r--r-- | git_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git_config.py b/git_config.py index 8c2eb6e9..c19f7662 100644 --- a/git_config.py +++ b/git_config.py | |||
@@ -795,8 +795,8 @@ class SyncAnalysisState: | |||
795 | to be logged. | 795 | to be logged. |
796 | """ | 796 | """ |
797 | self._config = config | 797 | self._config = config |
798 | now = datetime.datetime.utcnow() | 798 | now = datetime.datetime.now(datetime.timezone.utc) |
799 | self._Set("main.synctime", now.isoformat(timespec="microseconds") + "Z") | 799 | self._Set("main.synctime", now.isoformat(timespec="microseconds")) |
800 | self._Set("main.version", "1") | 800 | self._Set("main.version", "1") |
801 | self._Set("sys.argv", sys.argv) | 801 | self._Set("sys.argv", sys.argv) |
802 | for key, value in superproject_logging_data.items(): | 802 | for key, value in superproject_logging_data.items(): |