Skip to content
Snippets Groups Projects
Unverified Commit 1d12970a authored by John Kessenich's avatar John Kessenich Committed by GitHub
Browse files

Merge pull request #1485 from karl-lunarg/karl-lunarg-patch-1

tooling: Fix update sources script for Python 3
parents 12b99ef1 0cb8ad55
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ class GoodCommit(object):
def AddRemote(self):
"""Add the remote 'known-good' if it does not exist."""
remotes = command_output(['git', 'remote'], self.subdir).splitlines()
if 'known-good' not in remotes:
if b'known-good' not in remotes:
command_output(['git', 'remote', 'add', 'known-good', self.GetUrl()], self.subdir)
def HasCommit(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment