Skip to content

Commit

Permalink
Doc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed May 8, 2012
1 parent e038066 commit 9835ccf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -56,6 +56,7 @@ For further details see the reference documentation:
backends
fields
tasks
signals
changelog

Issues
Expand Down
6 changes: 3 additions & 3 deletions queued_storage/backends.py
Expand Up @@ -21,19 +21,19 @@ class QueuedStorage(object):
backends.
:param local: local storage class to transfer from
:type local: dotted import path
:type local: str
:param local_options: options of the local storage class
:type local_options: dict
:param remote: remote storage class to transfer to
:type remote: dotted import path
:type remote: str
:param remote_options: options of the remote storage class
:type remote_options: dict
:param cache_prefix: prefix to use in the cache key
:type cache_prefix: str
:param delayed: whether the transfer task should be executed automatically
:type delayed: bool
:param task: Celery task to use for the transfer
:type task: dotted import path
:type task: str
"""
#: The local storage class to use. A dotted path (e.g.
#: ``'django.core.files.storage.FileSystemStorage'``).
Expand Down
4 changes: 2 additions & 2 deletions queued_storage/tasks.py
Expand Up @@ -64,11 +64,11 @@ def run(self, name, cache_key,
:param name: name of the file to transfer
:type name: str
:param local_path: local storage class to transfer from
:type local_path: dotted import path
:type local_path: str
:param local_options: options of the local storage class
:type local_options: dict
:param remote_path: remote storage class to transfer to
:type remote_path: dotted import path
:type remote_path: str
:param remote_options: options of the remote storage class
:type remote_options: dict
:param cache_key: cache key to set after a successful transfer
Expand Down

0 comments on commit 9835ccf

Please sign in to comment.