__author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 1997-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 1997-2023 PhiloSoft Design"
__license__ = "GNU GPL"
lng = 0
# This is for DOS - it counts CRLF, which len() counts as 1 char!
- if os.name == 'dos' or os.name == 'nt' :
+ if os.name == 'dos' or os.name == 'nt':
dos_add = 1
else:
dos_add = 0 # UNIX' and Mac's len() counts CR or LF correct