Skip to content

Commit

Permalink
update radontea/_version.py with git_cast_file2repos.py
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed May 4, 2018
1 parent 9e3bd50 commit b173d5d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions radontea/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,11 @@ def _minimal_ext_cmd(cmd):
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
cmd = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=env)
out = cmd.communicate()[0]
pop = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
env=env)
out = pop.communicate()[0]
return out

# change directory
Expand Down

0 comments on commit b173d5d

Please sign in to comment.