diff sat/core/constants.py @ 2565:ea106dfa2145

setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
author Goffi <goffi@goffi.org>
date Tue, 03 Apr 2018 09:04:55 +0200
parents 26edcf3a30eb
children 4aca060075b7
line wrap: on
line diff
--- a/sat/core/constants.py	Tue Apr 03 08:00:42 2018 +0200
+++ b/sat/core/constants.py	Tue Apr 03 09:04:55 2018 +0200
@@ -30,10 +30,11 @@
     APP_NAME = u'Salut à Toi'
     APP_NAME_SHORT = u'SàT'
     APP_NAME_FILE = u'sat'
-    APP_NAME_FULL = u'%s (%s)' % (APP_NAME_SHORT, APP_NAME)
+    APP_NAME_FULL = u'{name_short} ({name})'.format(name_short=APP_NAME_SHORT,
+                                                    name=APP_NAME)
     APP_VERSION = u'0.7.0D'  # Please add 'D' at the end for dev versions
     APP_RELEASE_NAME = u'La Commune'
-    APP_URL = u'http://salut-a-toi.org'
+    APP_URL = u'https://salut-a-toi.org'
 
 
     ## Runtime ##