aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
Diffstat (limited to 'BibTeX.py')
-rw-r--r--BibTeX.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index fadfd53..fad8d19 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -302,7 +302,8 @@ class BibTeXEntry:
if self.type == 'inproceedings':
if self.get("booktitle"):
- if not self['booktitle'].startswith("Proceedings of"):
+ if not self['booktitle'].startswith("Proceedings of") and \
+ not self['booktitle'].startswith("{Proceedings of"):
errs.append("ERROR: %s's booktitle doesn't start with 'Proceedings'" % self.key)
for field, value in self.entries.items():