Correct the argument order of create-container.

This commit is contained in:
Phil Hagelberg 2010-03-11 17:17:18 -08:00
parent 2a6580d342
commit 769ba19157
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@ Options can also be specified for extension modules
(if (blobstore? blobstore)
(create-container blobstore "default" container-name)
(create-container *blobstore* container-name blobstore)))
([blobstore container-name location-name]
(.createContainerInLocation blobstore container-name location-name)))
([blobstore location-name container-name]
(.createContainerInLocation blobstore location-name container-name)))
(defn clear-container
"Clear a container."