Commit 72c30977 authored by Shane Hathaway's avatar Shane Hathaway

Fixed missing default arg value

parent 647378bf
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.44 $'[11:-2] __version__='$Revision: 1.45 $'[11:-2]
from string import join, split, find, rfind, lower, upper from string import join, split, find, rfind, lower, upper
from urllib import quote from urllib import quote
...@@ -90,7 +90,7 @@ class BaseRequest: ...@@ -90,7 +90,7 @@ class BaseRequest:
set=__setitem__ set=__setitem__
def get(self, key, default): def get(self, key, default=None):
"""Get a variable value """Get a variable value
Return a value for the required variable name. Return a value for the required variable name.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment