summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-03-12 13:02:01 -0700
committerMichael Merickel <michael@merickel.org>2013-03-12 13:02:01 -0700
commit40aeaa4d789f068ddaa10768068f2b88d075960f (patch)
treeab2b4f87b007a8422dfeb2bd239aad7a624fa76d
parent61b97ebf39b2f2681a0d72633f32bce9338b2257 (diff)
parent67bfa0561e478207dff3dbf921d756ce3adcf6db (diff)
downloadpyramid-40aeaa4d789f068ddaa10768068f2b88d075960f.tar.gz
pyramid-40aeaa4d789f068ddaa10768068f2b88d075960f.tar.bz2
pyramid-40aeaa4d789f068ddaa10768068f2b88d075960f.zip
Merge pull request #906 from tshepang/patch-2
capitalize
-rw-r--r--pyramid/threadlocal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/threadlocal.py b/pyramid/threadlocal.py
index e56f15336..638f7b7b0 100644
--- a/pyramid/threadlocal.py
+++ b/pyramid/threadlocal.py
@@ -40,7 +40,7 @@ def get_current_request():
is currently active.
This function should be used *extremely sparingly*, usually only
- in unit testing code. it's almost always usually a mistake to use
+ in unit testing code. It's almost always usually a mistake to use
``get_current_request`` outside a testing context because its
usage makes it possible to write code that can be neither easily
tested nor scripted.