followup for bug 465521 - fixup section name in .treestate as python 2.6 doesn't allow 'default', r=Standard8

This commit is contained in:
Robert Kaiser 2008-12-01 22:18:11 +01:00
Родитель 50fed9bf68
Коммит 368238f2a4
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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')