Browse Source

Add strings in weak quotes

Ask Solem 16 years ago
parent
commit
b589feb587
1 changed files with 2 additions and 2 deletions
  1. 2 2
      celery/backends/__init__.py

+ 2 - 2
celery/backends/__init__.py

@@ -11,8 +11,8 @@ def get_backend_cls(backend):
     """Get backend class by name.
 
     If the name does not include "``.``" (is not fully qualified),
-    ``celery.backends.`` will be prepended to the name. e.g.
-    ``database`` becomes ``celery.backends.database``.
+    ``"celery.backends."`` will be prepended to the name. e.g.
+    ``"database"`` becomes ``"celery.backends.database"``.
 
     """
     if backend.find(".") == -1: