Supress output and errors when setting maintainer of a new project for now, since only admins can set maintainers

This commit is contained in:
Denis Silakov 2015-05-27 18:00:12 +03:00
parent b9b5605da3
commit 6d1261732b

5
abf.py
View file

@ -1035,7 +1035,10 @@ def create():
os.system("git checkout -b " + default_branch);
os.system("git push origin " + default_branch);
os.system("abf update --maintainer " + login)
# Supress output and errors for now, since only admins can set maintainers
set_maintainer = Popen(['abf', 'update', '--maintainer', login], stdout=PIPE, stderr=PIPE)
out, err = set_maintainer.communicate()
# os.system("abf update --maintainer " + login)
# Go back to initial dir and delete temp folder
os.chdir(curdir)