From f48374aefb88978a430520648a6ec1bc27d7e0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Thu, 11 Jun 2015 23:29:59 +0200 Subject: [PATCH] Updated the README to reflex reality. Thanks petercsmith for the report! --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ea8893469..8b3af50e5 100644 --- a/README.rst +++ b/README.rst @@ -137,7 +137,7 @@ Let's have a simple Python class representing an article in a blogging system: Article.init() # create and save and article - article = Article(id=42, title='Hello world!', tags=['test']) + article = Article(meta={'id': 42}, title='Hello world!', tags=['test']) article.body = ''' looong text ''' article.published_from = datetime.now() article.save()