remove un-needed function

This commit is contained in:
Eeo Jun 2016-11-09 21:07:15 +08:00
parent 4b57f3e098
commit 5a32ae6180
No known key found for this signature in database
GPG Key ID: 147869E48111C846
1 changed files with 1 additions and 6 deletions

View File

@ -51,11 +51,6 @@ def get_editor_args(editor):
return []
def get_platform_editor_var():
# TODO: Make platform specific
return "$EDITOR"
def get_editor():
# Get the editor from the environment. Prefer VISUAL to EDITOR
editor = os.environ.get('VISUAL') or os.environ.get('EDITOR')
@ -69,7 +64,7 @@ def get_editor():
return path
raise EditorError("Unable to find a viable editor on this system."
"Please consider setting your %s variable" % get_platform_editor_var())
"Please consider setting your $EDITOR variable")
def get_tty_filename():