mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Raise summary char limit default to 50, fix config.sample.py
This commit is contained in:
parent
0178c4b5c5
commit
42c010de93
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user