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

- cleanup

This commit is contained in:
Marcus Huewe 2010-02-11 20:55:08 +01:00
parent 78d2e9c314
commit 51768ba3c2

View File

@ -2448,7 +2448,6 @@ def edit_message(footer='', template=''):
f.write('\n')
f.write(delim)
f.close()
mtime_orig = os.stat(filename).st_mtime
if sys.platform[:3] != 'win':
editor = os.getenv('EDITOR', default='vim')
@ -2456,8 +2455,6 @@ def edit_message(footer='', template=''):
editor = os.getenv('EDITOR', default='notepad')
while 1:
subprocess.call('%s %s' % (editor, filename), shell=True)
mtime = os.stat(filename).st_mtime
msg = open(filename).read().split(delim)[0].rstrip()
if len(msg):