##// END OF EJS Templates
system-info: fix reading backends from config....
marcink -
r2314:f4954584 default
parent child Browse files
Show More
@@ -489,8 +489,7 b' def svn_info():'
489 489
490 490 def vcs_backends():
491 491 import rhodecode
492 value = map(
493 string.strip, rhodecode.CONFIG.get('vcs.backends', '').split(','))
492 value = rhodecode.CONFIG.get('vcs.backends')
494 493 human_value = 'Enabled backends in order: {}'.format(','.join(value))
495 494 return SysInfoRes(value=value, human_value=human_value)
496 495
General Comments 0
You need to be logged in to leave comments. Login now