commit | b5e70f950e8e01d5830f4d969b2703b5cc6cd289 | [log] [tgz] |
---|---|---|
author | Mike Naberezny <mike@naberezny.com> | Fri Jul 03 15:47:00 2015 -0700 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Sat Jul 11 11:15:43 2015 -0500 |
tree | 7bb6a9f474fa55cf519c1a59c429272c408081a8 | |
parent | b26804d1c217eced84ab57cbffe8a0baf4db8f9f [diff] [blame] |
Fix undefined name "sys" Same as #299 (bca0eff81a1c5ef160d9858b8e89b1c919b71c1f), but an earlier commit needed to be rebased.
diff --git a/devtools/fixeol.py b/devtools/fixeol.py index 054eb9b..b55e146 100644 --- a/devtools/fixeol.py +++ b/devtools/fixeol.py
@@ -5,6 +5,7 @@ from __future__ import print_function import os.path +import sys def fix_source_eol(path, is_dry_run = True, verbose = True, eol = '\n'): """Makes sure that all sources have the specified eol sequence (default: unix)."""