mirror of https://github.com/kivy/kivy.git
Merge pull request #2949 from merriam/merriam_branch_6
PEP8 fixes for setup.py
This commit is contained in:
commit
845691a84b
12
setup.py
12
setup.py
|
@ -26,10 +26,12 @@ else:
|
|||
|
||||
def getoutput(cmd):
|
||||
import subprocess
|
||||
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr = subprocess.PIPE)
|
||||
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
p.wait()
|
||||
if p.returncode: # if not returncode == 0
|
||||
print('WARNING: A problem occured while running {0} (code {1})\n'.format(cmd,p.returncode))
|
||||
if p.returncode: # if not returncode == 0
|
||||
print('WARNING: A problem occured while running {0} (code {1})\n'
|
||||
.format(cmd, p.returncode))
|
||||
stderr_content = p.stderr.read()
|
||||
if stderr_content:
|
||||
print('{0}\n'.format(stderr_content))
|
||||
|
@ -267,8 +269,8 @@ if platform == 'ios':
|
|||
|
||||
# detect gstreamer, only on desktop
|
||||
# works if we forced the options or in autodetection
|
||||
if platform not in ('ios', 'android') and c_options['use_gstreamer'] in (None, True):
|
||||
|
||||
if platform not in ('ios', 'android') and (c_options['use_gstreamer']
|
||||
in (None, True)):
|
||||
if c_options['use_osx_frameworks'] and platform == 'darwin':
|
||||
# check the existence of frameworks
|
||||
f_path = '/Library/Frameworks/GStreamer.framework'
|
||||
|
|
Loading…
Reference in New Issue