Fix bug in 'Building A Simple Module' doc (#22447)

This commit is contained in:
Artem Zinenko 2017-03-10 16:43:45 +03:00 committed by jctanner
parent 7ad6ce7ea1
commit 990aa73ed8

View file

@ -34,7 +34,7 @@ Ok, let's get going with an example. We'll use Python. For starters, save this
date = str(datetime.datetime.now())
print json.dumps({
"Hello world!" : date
"time" : date
})
.. _module_testing: