diff --git a/.gitignore b/.gitignore index b211d82..9d8e66a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,8 @@ *.tar *.pyc *.sw* -test.* +test.sh +test.py work timetracker.py-pre-incident-fixup do_process.bak2017-11-06_file-test diff --git a/test.py b/test.py deleted file mode 100644 index fc90871..0000000 --- a/test.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python - -import fileinput -import math -import re -import sys -import time - -empty = re.compile("^\s*$") -delim = re.compile(":\s{2}") -stripped = {} - -for line in fileinput.input(): - if empty.match(line): - continue - - print line - stripped = delim.split(line.strip()) - print len(stripped)