Skip to content

Commit

Permalink
also write stderr to releaselog
Browse files Browse the repository at this point in the history
  • Loading branch information
H-M-H committed Aug 16, 2017
1 parent 0143099 commit 3b74e25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion maps/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ def release_maps_thread(on_finished=None):
p = subprocess.Popen(
['map_release_done'],
stdin=subprocess.PIPE,
stdout=open(settings.RELEASE_LOG, 'wb')
stdout=open(settings.RELEASE_LOG, 'wb'),
stderr=subprocess.STDOUT,
)
p.stdin.write(bytes(json.dumps(
{
Expand Down

0 comments on commit 3b74e25

Please sign in to comment.