Browse Source

More codeblock fixes.

Rafał Pitoń 11 years ago
parent
commit
3f825e5cbb
1 changed files with 4 additions and 4 deletions
  1. 4 4
      docs/thread_store.rst

+ 4 - 4
docs/thread_store.rst

@@ -15,11 +15,11 @@ get
 Get value for key from thread store or default value if key is undefined::
 Get value for key from thread store or default value if key is undefined::
 
 
     >>> from misago.core import threadstore
     >>> from misago.core import threadstore
-	>>> get('peach')
-	None
+    >>> get('peach')
+    None
 
 
-	>>> get('peach', 'no peach!')
-	'no peach!'
+    >>> get('peach', 'no peach!')
+    'no peach!'
 
 
 
 
 get() never raises an exception for non-existant value which is why you should avoid storing "None" values and use custom default values to spot non-existant keys.
 get() never raises an exception for non-existant value which is why you should avoid storing "None" values and use custom default values to spot non-existant keys.