joerussbowman / gaeutilities

gaeutilities - A collection of utilities to help with application development on Google Appengine
http://gaeutilities.appspot.com
BSD 3-Clause "New" or "Revised" License
78 stars 4 forks source link

val is not defined #5

Closed alfredwesterveld closed 14 years ago

alfredwesterveld commented 14 years ago

val is not defined in get_many() from cache.py

line[321]: dict[key] = val

joerussbowman commented 14 years ago

I'll take a look at this as soon as I can. Hopefully this weekend, but maybe early next week. Halloween + kid = not a lot of time.

joerussbowman commented 14 years ago

The simple fix, believe, is to change line 321 to

dict[key] = value

alfredwesterveld commented 14 years ago

Hi joerussbowman :). You are correct about the fix ;). Have a good halloween.

joerussbowman commented 14 years ago

Fix is in the master branch now

joerussbowman commented 14 years ago

fixed