Skip to content

Commit e527ae5

Browse files
authored
Correct test following rebase
1 parent 80aee60 commit e527ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyterlab_git/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async def config(self, top_repo_path, **kwargs):
144144
response["command"] = " ".join(cmd)
145145
response["message"] = error.strip()
146146
else:
147-
raw = output.decode("utf-8").strip()
147+
raw = output.strip()
148148
s = CONFIG_PATTERN.split(raw)
149149
response["options"] = {k:v for k, v in zip(s[1::2], s[2::2]) if k in ALLOWED_OPTIONS}
150150

0 commit comments

Comments
 (0)