diff -r 96380c1524b0 -r e08102f45237 devtools/__init__.py --- a/devtools/__init__.py Thu Oct 01 11:40:23 2015 +0200 +++ b/devtools/__init__.py Tue Oct 13 16:57:09 2015 +0200 @@ -679,7 +679,7 @@ @property def _config_id(self): - return sha1(self.config.apphome).hexdigest()[:10] + return sha1(self.config.apphome.encode('utf-8')).hexdigest()[:10] def _backup_name(self, db_id): # merge me with parent backup_name = '_'.join(('cache', self._config_id, self.dbname, db_id))