Merge pull request #21 from kennethreitz/patch-1

proper python comments in readme
This commit is contained in:
Bryan Veloso 2011-06-29 12:32:44 -07:00
commit 2316646563

View file

@ -67,14 +67,14 @@ Create your specifications.
# now we can define our thumbnail spec
class Thumbnail(ImageSpec):
quality = 90 // defaults to 70
quality = 90 # defaults to 70
access_as = 'thumbnail_image'
pre_cache = True
processors = [ResizeThumb, EnchanceThumb]
# and our display spec
class Display(ImageSpec):
quality = 90 // defaults to 70
quality = 90 # defaults to 70
increment_count = True
processors = [ResizeDisplay]