summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2008-07-12 13:22:21 +0000
committerTres Seaver <tseaver@palladion.com>2008-07-12 13:22:21 +0000
commiteffbaa2f68cc3fcf4a29aa0c275648c2a52e9455 (patch)
tree05c5ff44ee18010c5c7178d92d3333484198b4b9 /README.txt
parentb7ac1607c4f8c5b3ef5f2bf5259f6e08e85327a1 (diff)
downloadpyramid-effbaa2f68cc3fcf4a29aa0c275648c2a52e9455.tar.gz
pyramid-effbaa2f68cc3fcf4a29aa0c275648c2a52e9455.tar.bz2
pyramid-effbaa2f68cc3fcf4a29aa0c275648c2a52e9455.zip
Omitted deriving example interface from zope.interface.Interface.
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index ae48e4968..73548ee9d 100644
--- a/README.txt
+++ b/README.txt
@@ -293,7 +293,7 @@ A models.py might look like so::
from zope.interface import Attribute
from zope.interface import Interface
- class IMyModel:
+ class IMyModel(Interface):
__name__ = Attribute('Name of the model instance')
class MyModel(UserDict):