0

used LOG instead of logging on a few stragglers

This commit is contained in:
Aaron Griffith
2013-12-01 16:39:45 -05:00
parent e26727943f
commit 144cff18e3
4 changed files with 10 additions and 10 deletions

View File

@@ -433,9 +433,9 @@ dir but you forgot to put quotes around the directory, since it contains spaces.
texopts_key = tuple(texopts.items())
if texopts_key not in texcache:
tex = textures.Textures(**texopts)
logging.debug("Starting to generate textures")
LOG.debug("Starting to generate textures")
tex.generate()
logging.debug("Finished generating textures")
LOG.debug("Finished generating textures")
texcache[texopts_key] = tex
else:
tex = texcache[texopts_key]