followup for bug 465521 - fixup section name in .treestate as python 2.6 doesn't allow 'default', r=Standard8
This commit is contained in:
Родитель
50fed9bf68
Коммит
368238f2a4
|
@ -56,9 +56,9 @@ def repo_config():
|
|||
import ConfigParser
|
||||
config = ConfigParser.ConfigParser()
|
||||
config.read([TREE_STATE_FILE])
|
||||
if not config.has_section('default'):
|
||||
config.add_section('default')
|
||||
config.set('default', 'src_update_version', '1')
|
||||
if not config.has_section('treestate'):
|
||||
config.add_section('treestate')
|
||||
config.set('treestate', 'src_update_version', '1')
|
||||
|
||||
# Write this file out
|
||||
f = open(TREE_STATE_FILE, 'w')
|
||||
|
|
Загрузка…
Ссылка в новой задаче