--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUtilities.py Mon Sep 23 19:22:12 2019 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUtilities.py Mon Sep 23 20:03:20 2019 +0200 @@ -24,9 +24,11 @@ @param seconds time in seconds since epoch to be formatted (float or long) @return formatted time string (string) """ - return QDateTime.fromTime_t(int(seconds))\ - .toTimeSpec(Qt.LocalTime)\ - .toString("yyyy-MM-dd hh:mm:ss") + return ( + QDateTime.fromTime_t(int(seconds)) + .toTimeSpec(Qt.LocalTime) + .toString("yyyy-MM-dd hh:mm:ss") + ) def dateFromTime_t(seconds):