fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Reject interrupted requests.
[redakcja.git]
/
src
/
documents
/
models
/
book.py
diff --git
a/src/documents/models/book.py
b/src/documents/models/book.py
index
c11862b
..
bede8d0
100644
(file)
--- a/
src/documents/models/book.py
+++ b/
src/documents/models/book.py
@@
-56,8
+56,6
@@
class Book(models.Model):
related_name='document_books',
related_query_name='document_book',
)
related_name='document_books',
related_query_name='document_book',
)
- legimi_id = models.CharField(max_length=255, blank=True)
- woblink_id = models.CharField(max_length=255, blank=True)
class NoTextError(BaseException):
pass
class NoTextError(BaseException):
pass
@@
-288,7
+286,7
@@
class Book(models.Model):
try:
changes = self.get_current_changes(publishable=True)
except self.NoTextError:
try:
changes = self.get_current_changes(publishable=True)
except self.NoTextError:
- raise AssertionError(_('Not all chunks have
publishable
revisions.'))
+ raise AssertionError(_('Not all chunks have
approved
revisions.'))
from librarian import NoDublinCore, ParseError, ValidationError
from librarian import NoDublinCore, ParseError, ValidationError