diff options
Diffstat (limited to 'parsers/subcaves.py')
-rw-r--r-- | parsers/subcaves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/subcaves.py b/parsers/subcaves.py index 739af44..5889a91 100644 --- a/parsers/subcaves.py +++ b/parsers/subcaves.py @@ -34,7 +34,7 @@ def importSubcaves(cave): nonLookupAttribs={'description':description} newSubcave=save_carefully(Subcave,lookupAttribs=lookupAttribs,nonLookupAttribs=nonLookupAttribs) - logging.info("Added " + unicode(newSubcave) + " to " + unicode(cave)) + logging.info("Added " + str(newSubcave) + " to " + str(cave)) except IOError: logging.info("Subcave import couldn't open "+subcaveFilePath) |