The unified diff between revisions [2531d294..] and [0b849689..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'web.py'

#
#
# patch "web.py"
#  from [5a70283ce26a8d90373c31b3c2eb35cd39e4d7a5]
#    to [926f3f99a3ce2dd96f9c1ba3f16538961f46f3f2]
#
============================================================
--- web.py	5a70283ce26a8d90373c31b3c2eb35cd39e4d7a5
+++ web.py	926f3f99a3ce2dd96f9c1ba3f16538961f46f3f2
@@ -71,7 +71,7 @@ def rstrips(text, remove):
 def rstrips(text, remove):
     """removes the string `remove` from the right of `text`"""
     return _strips('r', text, remove)
-def lstrips(a, b):
+def lstrips(text, remove):
     """removes the string `remove` from the right of `text`"""
     return _strips('l', text, remove)
 def strips(a, b):