Remove editor-specific comments.

If Vim can autodetect that a file is a Python file, so can Emacs.  Also, not
all Vim users will want to use folding, so remove that comment as well.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
This commit is contained in:
brian m. carlson 2014-02-18 20:10:12 +00:00
parent 63bc52354d
commit c6b79197fd
No known key found for this signature in database
GPG key ID: BF535D811F52F68B

3
newfol
View file

@ -1,5 +1,4 @@
#! /usr/bin/python3
# Since peter uses emacs, remind it that this is a -*- python -*- file.
import sys
sys.path.insert(0, sys.path[0] + "/lib")
@ -1173,5 +1172,3 @@ except newfol.exception.UpgradeNeededError as e:
except newfol.exception.FilemanipError as e:
print("E: {0}".format(str(e)), file=sys.stderr)
sys.exit(2)
# vim: set fdm=indent: