summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-11-18 19:34:13 -0800
committerR. Tyler Ballance <tyler@monkeypox.org>2009-11-18 19:34:13 -0800
commitf45b9f070934fcb4fc6809ed90b89a25f90ea222 (patch)
treef240a6a3ae133697db9e2fedf0039af40ca78130
parent0fca88e647edb4cda3cff4de9b0f8dcbdc40913b (diff)
downloadpython-cheetah-f45b9f070934fcb4fc6809ed90b89a25f90ea222.tar.gz
Print the files we're analyzing
-rw-r--r--cheetah/DirectiveAnalyzer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cheetah/DirectiveAnalyzer.py b/cheetah/DirectiveAnalyzer.py
index 070ef6c..a9f9387 100644
--- a/cheetah/DirectiveAnalyzer.py
+++ b/cheetah/DirectiveAnalyzer.py
@@ -37,6 +37,7 @@ def analyze(source):
def main_file(f):
fd = open(f, 'r')
try:
+ print u'>>> Analyzing %s' % f
calls = analyze(fd.read())
return calls
finally: