chiark / gitweb /
Raise summary char limit default to 50, fix config.sample.py
authorDaniel Martí <mvdan@mvdan.cc>
Wed, 8 Jan 2014 12:19:57 +0000 (13:19 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Wed, 8 Jan 2014 12:19:57 +0000 (13:19 +0100)
fdroidserver/common.py
sampleconfigs/config.sample.py

index 6b82a70172936125599e7311f428ca87e0a2ed91..be9bf6dcf2dc65aca19d594238902b0705f303fa 100644 (file)
@@ -62,7 +62,7 @@ def read_config(opts, config_file='config.py'):
         'stats_to_carbon': False,
         'repo_maxage': 0,
         'char_limits': {
-            'Summary' : 40,
+            'Summary' : 50,
             'Description' : 1500
         }
 
index 8b9e64a286bd66f308b3cdbe7bc9718dc6fbd82c..d352fa024bf06904f6ed4c7fa5b282d10765e2b9 100644 (file)
@@ -111,7 +111,7 @@ build_server_always = False
 
 # Limit in number of characters that fields can take up
 # Only the fields listed here are supported, defaults shown
-char_limits: {
-    'Summary' : 40
+char_limits = {
+    'Summary' : 50,
     'Description' : 1500
 }