diff --git a/src/calibre/db/backend.py b/src/calibre/db/backend.py index 03187036f9..851b9df1d6 100644 --- a/src/calibre/db/backend.py +++ b/src/calibre/db/backend.py @@ -317,8 +317,8 @@ class DB(object): if iswindows and len(self.library_path) + 4*self.PATH_LIMIT + 10 > 259: raise ValueError(_( - 'Path to library too long. Must be less than' - ' %d characters.')%(259-4*self.PATH_LIMIT-10)) + 'Path to library (%s) too long. Must be less than' + ' %d characters.')%(self.library_path, 259-4*self.PATH_LIMIT-10)) exists = self._exists = os.path.exists(self.dbpath) if not exists: # Be more strict when creating new libraries as the old calculation