Delete unused variables

This commit is contained in:
Konstantin Bakulin
2015-07-07 21:34:35 +03:00
parent 9c75061d4f
commit 802ba669c1
4 changed files with 4 additions and 9 deletions

View File

@@ -68,7 +68,7 @@ def open_editor(data=''):
curses.endwin()
try:
subprocess.Popen([editor, fp.name]).wait()
except OSError as e:
except OSError:
raise ProgramError(editor)
curses.doupdate()