https://bugzilla.novell.com/show_bug.cgi?id=439177 Summary: Python deprecated code breaks osc build Product: openSUSE.org Version: unspecified Platform: Other OS/Version: All Status: NEW Keywords: dogfood Severity: Major Priority: P5 - None Component: BuildService AssignedTo: poeml@novell.com ReportedBy: werner@novell.com QAContact: adrian@novell.com Found By: --- I've seen a break in /usr/lib64/python2.6/site-packages/osc/fetch.py on line 149 as python 2.6 seems to mark the os.popen4 as deprecated. Sugessted solution is simply to add import subprocess and replace (i, o) = os.popen4(['/bin/rpm', '-K'] + pac_list) with (i, o) = subprocess.Popen(['/bin/rpm', '-K'] + pac_list) maybe with a version check around to make this code work even with older python versions. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.