alfonsodg / demo-web2py

Apache License 2.0
0 stars 0 forks source link

typo in languages.py line 37 - cgi.esacpe should be cgi.escape #5

Closed alfonsodg closed 10 years ago

alfonsodg commented 10 years ago

From mcwi...@gmail.com on March 03, 2008 00:38:33

What steps will reproduce the problem? 1. N/A see below 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. Minor issue: a type on line 37 of gluon/languages.py.

In Class lazyT:

def xml(self):
    return cgi.esacpe(str(self))

should be:

def xml(self):
    return cgi.escape(str(self))

'escape' was misspelled 'esacpe'.

Original issue: http://code.google.com/p/web2py/issues/detail?id=5

alfonsodg commented 10 years ago

From mcwi...@gmail.com on March 02, 2008 21:39:27

Sorry this should be a low priority issue. Perhaps it has already been corrected in recent code updates?

alfonsodg commented 10 years ago

From massimod...@gmail.com on March 03, 2008 07:27:39

Thanks. Fixed now.

Status: Fixed