aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-05-28 20:24:45 +0000
committerNick Mathewson <nickm@torproject.org>2003-05-28 20:24:45 +0000
commit4400ab400f82d8fb4394708bdc804f71418d314a (patch)
tree4746205d145c2f6bbcdf6640a409a53fb7d36f01
parent331249d7e20edeec2018e2fdf1cfefbd295b4e18 (diff)
downloadanonbib-4400ab400f82d8fb4394708bdc804f71418d314a.tar.gz
Deal with unnumbered tech reports
svn:r50
-rw-r--r--BibTeX.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index 67141d0..0248385 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -283,7 +283,7 @@ class BibTeXEntry:
elif self.type == 'article':
fields = 'journal', 'year'
elif self.type == 'techreport':
- fields = 'institution'
+ fields = 'institution',
elif self.type == 'misc':
fields = 'howpublished',
elif self.type in ('mastersthesis', 'phdthesis'):