aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-05-23 10:23:00 +0000
committerRoger Dingledine <arma@torproject.org>2003-05-23 10:23:00 +0000
commitaa2c05c993c680c5d2456e3d73ca224122f4001d (patch)
tree52604232f26fc56cdc1234f6cc152f3d6b171d05 /BibTeX.py
parentbe27a365b42df24a0bb7ec3a88c398241536438d (diff)
downloadanonbib-aa2c05c993c680c5d2456e3d73ca224122f4001d.tar.gz
another day, another checkin
svn:r38
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():