diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2073,7 +2073,7 @@ class Project(object): | |||
2073 | gitmodules_lines = [] | 2073 | gitmodules_lines = [] |
2074 | fd, temp_gitmodules_path = tempfile.mkstemp() | 2074 | fd, temp_gitmodules_path = tempfile.mkstemp() |
2075 | try: | 2075 | try: |
2076 | os.write(fd, p.stdout) | 2076 | os.write(fd, p.stdout.encode('utf-8')) |
2077 | os.close(fd) | 2077 | os.close(fd) |
2078 | cmd = ['config', '--file', temp_gitmodules_path, '--list'] | 2078 | cmd = ['config', '--file', temp_gitmodules_path, '--list'] |
2079 | p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, | 2079 | p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, |