aboutsummaryrefslogtreecommitdiff
path: root/python/examples/wordcount.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/wordcount.py')
-rwxr-xr-xpython/examples/wordcount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/wordcount.py b/python/examples/wordcount.py
index a6de22766a..b9139b9d76 100755
--- a/python/examples/wordcount.py
+++ b/python/examples/wordcount.py
@@ -32,4 +32,4 @@ if __name__ == "__main__":
.reduceByKey(add)
output = counts.collect()
for (word, count) in output:
- print "%s : %i" % (word, count)
+ print "%s: %i" % (word, count)