Tue, 24 Sep 2019 19:08:10 +0200
Continued to resolve code style issue M841.
# -*- coding: utf-8 -*- # Copyright (c) 2002 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining some informational strings. """ Program = 'eric6' Version = '@@VERSION@@ (rev. @@REVISION@@)' VersionOnly = '@@VERSION@@' Copyright = ( 'Copyright (c) 2002 - 2019 Detlev Offenbach' ' <detlev@die-offenbachs.de>' ) CopyrightShort = '(c) 2002 - 2019 Detlev Offenbach' BugAddress = 'eric-bugs@eric-ide.python-projects.org' FeatureAddress = 'eric-featurerequest@eric-ide.python-projects.org' Homepage = "https://eric-ide.python-projects.org/index.html"