Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pgettext.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgettext.py')
-rw-r--r--pgettext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pgettext.py b/pgettext.py
index ac1473c..e3ce7af 100644
--- a/pgettext.py
+++ b/pgettext.py
@@ -31,7 +31,7 @@ def pgettext(msgctxt, msgid):
else:
return gettext(msgid)
-# Map our pgettext() custom function to _p()
-_p = lambda msgctxt, msgid: pgettext(msgctxt, msgid)
+# Map our pgettext() custom function to _()
+_ = lambda msgctxt, msgid: pgettext(msgctxt, msgid)