CC-3058: Extranenous string during install process

-fixed
This commit is contained in:
Martin Konecny 2011-11-17 18:15:27 -05:00
parent 4f2adc3068
commit 84e2fff36e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ def is_natty():
"""
def get_os_codename():
try:
p = Popen("which lsb_release", shell=True)
p = Popen("which lsb_release > /dev/null", shell=True)
sts = os.waitpid(p.pid, 0)[1]
if (sts == 0):