Skip to content

Commit cb873be

Browse files
committed
Return entry.value_string from ConfigMultivarIterator
1 parent 2e14065 commit cb873be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygit2/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __next__(self):
6969
class ConfigMultivarIterator(ConfigIterator):
7070
def __next__(self):
7171
entry = self._next_entry()
72-
return ffi.string(entry.value).decode('utf-8')
72+
return entry.value_string
7373

7474

7575
class Config(object):

0 commit comments

Comments
 (0)