1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 06:46:15 +01:00

osc metafromspec allows editing before send

This commit is contained in:
Michal Vyskocil 2009-06-19 08:59:39 +00:00
parent ea39db700c
commit 56e79daeec
2 changed files with 4 additions and 3 deletions

1
NEWS
View File

@ -6,6 +6,7 @@
- fix support of listing requests with multiple actions
- "osc maintainer" is following to the development project / package now
- "osc maintainer" list maintainer and bugowner roles now
- osc metafromspec allows editing before send
0.119:
- Support new request types

View File

@ -1145,11 +1145,11 @@ rev: %s
print ET.tostring(tree)
print '*' * 72
# FIXME: for testing...
# open the new description in $EDITOR instead?
repl = raw_input('Write? (y/N) ')
repl = raw_input('Write? (y/N/e) ')
if repl == 'y':
mf.sync()
elif repl == 'e':
mf.edit()
mf.discard()