Your ROOT_URL in app.ini is https://git.hpc.odu.edu/ but you are visiting https://git.wahab.hpc.odu.edu/wirawan0/wpylib/commit/6fb10829e0381fc1c78e1e915399e9d4c2d863fa?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
1 deletions
params/params_flat.py
@ -1,4 +1,4 @@
# $Id: params_flat.py,v 1.4 2011-09-09 18:58:48 wirawan Exp $
# $Id: params_flat.py,v 1.5 2011-09-12 21:58:43 wirawan Exp $
#
#
# wpylib.params.params_flat module
# wpylib.params.params_flat module
# Created: 20100930
# Created: 20100930
@ -245,6 +245,12 @@ class Parameters(dict):
# return self._prm_.__iter__()
# return self._prm_.__iter__()
#def _iteritems_(self):
#def _iteritems_(self):
# return self._prm_.iteritems()
# return self._prm_.iteritems()
def _get_ ( self , key , default = None ) :
""" Nested version of dict.get for this Parameters object. """
try :
return self [ key ]
except KeyError :
return default
def _update_ ( self , srcdict ) :
def _update_ ( self , srcdict ) :
""" Updates the most overriding parameters with key-value pairs from
""" Updates the most overriding parameters with key-value pairs from
srcdict .
srcdict .