diff options
| author | Patricio Paez <pp@pp.com.mx> | 2012-04-08 09:50:19 -0500 |
|---|---|---|
| committer | Patricio Paez <pp@pp.com.mx> | 2012-04-08 09:50:19 -0500 |
| commit | 6d46a771ab8af1cd0dd61de0a99f898698c4a961 (patch) | |
| tree | 82299bed8dd3a404474ef8d07aaaf670e05870b4 /docs/tutorials/wiki/src/tests | |
| parent | fad5003b4f0cba6217c23e2f3aa40bf7cb4f8200 (diff) | |
| download | pyramid-6d46a771ab8af1cd0dd61de0a99f898698c4a961.tar.gz pyramid-6d46a771ab8af1cd0dd61de0a99f898698c4a961.tar.bz2 pyramid-6d46a771ab8af1cd0dd61de0a99f898698c4a961.zip | |
Final details
- Normalize the Seeing our changes section
- Changed import to recommended style
Diffstat (limited to 'docs/tutorials/wiki/src/tests')
| -rw-r--r-- | docs/tutorials/wiki/src/tests/tutorial/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/src/tests/tutorial/models.py b/docs/tutorials/wiki/src/tests/tutorial/models.py index 0a31c38be..582ff0d7e 100644 --- a/docs/tutorials/wiki/src/tests/tutorial/models.py +++ b/docs/tutorials/wiki/src/tests/tutorial/models.py @@ -1,8 +1,10 @@ from persistent import Persistent from persistent.mapping import PersistentMapping -from pyramid.security import Allow -from pyramid.security import Everyone +from pyramid.security import ( + Allow, + Everyone, + ) class Wiki(PersistentMapping): __name__ = None |
