View | Details | Raw Unified | Return to bug 38697
Collapse All | Expand All

(-)a/branches/ucs-4.0/ucs-4.0-2/management/univention-management-console-module-appcenter/umc/python/appcenter/app_center.py (-1 / +1 lines)
 Lines 1640-1646   class Application(object): Link Here 
1640
                               else:
1640
                               else:
1641
                                       MODULE.process('Cannot run them without credentials')
1641
                                       MODULE.process('Cannot run them without credentials')
1642
                                       return
1642
                                       return
1643
                       run_join_scripts = Thread(target=subprocess.call, args=[args], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1643
                       run_join_scripts = Thread(target=subprocess.call, args=[args], kwargs=dict(stdout=subprocess.PIPE, stderr=subprocess.PIPE))
1644
                       run_join_scripts.start()
1644
                       run_join_scripts.start()
1645
                       while run_join_scripts.is_alive():
1645
                       while run_join_scripts.is_alive():
1646
                               # i did not find anything nearly as efficient as this one
1646
                               # i did not find anything nearly as efficient as this one

Return to bug 38697