@@ -123,12 +123,12 @@ def _set_cache_(self, attr):
123
123
reader = self .config_reader ()
124
124
# default submodule values
125
125
try :
126
- self .path = reader .get_value ('path' )
126
+ self .path = reader .get ('path' )
127
127
except cp .NoSectionError :
128
128
raise ValueError ("This submodule instance does not exist anymore in '%s' file"
129
129
% osp .join (self .repo .working_tree_dir , '.gitmodules' ))
130
130
# end
131
- self ._url = reader .get_value ('url' )
131
+ self ._url = reader .get ('url' )
132
132
# git-python extension values - optional
133
133
self ._branch_path = reader .get_value (self .k_head_option , git .Head .to_full_path (self .k_head_default ))
134
134
elif attr == '_name' :
@@ -1168,11 +1168,11 @@ def iter_items(cls, repo, parent_commit='HEAD'):
1168
1168
1169
1169
for sms in parser .sections ():
1170
1170
n = sm_name (sms )
1171
- p = parser .get_value (sms , 'path' )
1172
- u = parser .get_value (sms , 'url' )
1171
+ p = parser .get (sms , 'path' )
1172
+ u = parser .get (sms , 'url' )
1173
1173
b = cls .k_head_default
1174
1174
if parser .has_option (sms , cls .k_head_option ):
1175
- b = str (parser .get_value (sms , cls .k_head_option ))
1175
+ b = str (parser .get (sms , cls .k_head_option ))
1176
1176
# END handle optional information
1177
1177
1178
1178
# get the binsha
0 commit comments