Browse Source

[desktop] Don't capture STDERR from password scripts

Erick Tryzelaar 10 years ago
parent
commit
08358e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/core/src/desktop/conf.py

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -58,7 +58,7 @@ def coerce_file(path):
   return path
 
 def coerce_password_from_script(script):
-  p = subprocess.Popen(script, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+  p = subprocess.Popen(script, shell=True, stdout=subprocess.PIPE)
   stdout, stderr = p.communicate()
 
   if p.returncode != 0: