aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-05-28 20:24:37 +0000
committerNick Mathewson <nickm@torproject.org>2003-05-28 20:24:37 +0000
commit331249d7e20edeec2018e2fdf1cfefbd295b4e18 (patch)
tree5339adcb59e8c2ca6a17bcdb266ad4c72b21612a
parentc81319516024d3a548e3ecab4affece85b6d6aed (diff)
downloadanonbib-331249d7e20edeec2018e2fdf1cfefbd295b4e18.tar.gz
Deal with unnumbered tech reports
svn:r49
-rw-r--r--BibTeX.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index 44de32f..67141d0 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', 'number'
+ fields = 'institution'
elif self.type == 'misc':
fields = 'howpublished',
elif self.type in ('mastersthesis', 'phdthesis'):