Mercurial > p > roundup > code
diff roundup/cgi/engine_zopetal.py @ 4727:5033c2ad80a7
templating: Rename LoaderBase.get() to LoaderBase.load() for clarity
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Sun, 13 Jan 2013 22:39:46 +0300 |
| parents | 98b727b6f7f8 |
| children | 4caa6de726a5 |
line wrap: on
line diff
--- a/roundup/cgi/engine_zopetal.py Sun Jan 13 15:12:04 2013 +0300 +++ b/roundup/cgi/engine_zopetal.py Sun Jan 13 22:39:46 2013 +0300 @@ -21,7 +21,7 @@ def __init__(self, dir): self.dir = dir - def get(self, name, extension=None): + def load(self, name, extension=None): # default the name to "home" if name is None: name = 'home'
