summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: