From d5d76cf4865eae0a9dd0c96b7bedd66f878bd64d Mon Sep 17 00:00:00 2001 From: Kevin Lyda <kevin@ie.suberic.net> Date: Tue, 19 Sep 2017 19:04:54 +0100 Subject: [PATCH] Use full sentencese. --- plugin/cobol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/cobol.py b/plugin/cobol.py index 7b71d29..838446a 100755 --- a/plugin/cobol.py +++ b/plugin/cobol.py @@ -45,7 +45,7 @@ def cobol_Renumber(): lines[j] = ('%06d' % new_line_no) + lines[j][6:] new_line_no += delta else: - print('Not a COBOL file. This is a %s file' % + print('Not a COBOL file. This is a %s file.' % vim.current.buffer.options['filetype'].decode('UTF-8')) def cobol_Unnumber(): @@ -55,5 +55,5 @@ def cobol_Unnumber(): if lines[i][:6].isdigit(): lines[i] = ' ' + lines[i][6:] else: - print('Not a COBOL file. This is a %s file' % + print('Not a COBOL file. This is a %s file.' % vim.current.buffer.options['filetype'].decode('UTF-8')) -- GitLab