ISFDB banner

Publisher Arno Press: Books Published in 1974

You are not logged in. If you create a free account and sign in, you will be able to customize what is displayed.

View covers for this yearReturn to the publisher page

--> -->
Title Date Author/Editor Publication series ISBN/Catalog ID Price Pages Format Type Cover Artist Verif
 
 
<class 'MySQLdb._exceptions.ProgrammingError'>
Python 2.7.18: /usr/bin/python
Mon Apr 29 16:24:58 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/stoecker/isfdb/install/cgi-bin/publisheryear.cgi in <module>()
     55                 print ISFDBLinkNoName('publisher.cgi', publisher_id, 'Return to the publisher page')
     56                 print '<p>'
=>   57                 PrintPubsTable(pubs, 'publisher')
     58 
     59         PrintTrailer('publisheryear', publisher_id, publisher_id)
PrintPubsTable = <function PrintPubsTable>, pubs = [(261534, 'Index to the Weird Fiction Magazines: Volumes I and II', 'NDXTTHWRDF1975', '1974-00-00', 570, '101', 'hc', 'OMNIBUS', '0405063229', '', '$7.00', 135762, 399, None, None), (676205, "The Strike of a Sex and Zugassent's Discovery, or, After the Sex Struck", 'THSTRKFSXN1974', '1974-00-00', 570, '118', 'unknown', 'OMNIBUS', '0405058128', None, None, None, None, None, None)]
 /home/stoecker/isfdb/install/cgi-bin/common.py in PrintPubsTable(pubs=[(261534, 'Index to the Weird Fiction Magazines: Volumes I and II', 'NDXTTHWRDF1975', '1974-00-00', 570, '101', 'hc', 'OMNIBUS', '0405063229', '', '$7.00', 135762, 399, None, None), (676205, "The Strike of a Sex and Zugassent's Discovery, or, After the Sex Struck", 'THSTRKFSXN1974', '1974-00-00', 570, '118', 'unknown', 'OMNIBUS', '0405058128', None, None, None, None, None, None)], display_type='publisher', user=<login.User instance>, limit=100000)
   1080         index = 1
   1081         for pub in pubs:
=> 1082                 PrintOnePub(pub, pub_authors, pub_publishers, pub_series, cover_artists, bgcolor, display_type, user, index)
   1083                 bgcolor ^= 1
   1084                 index += 1
global PrintOnePub = <function PrintOnePub>, pub = (261534, 'Index to the Weird Fiction Magazines: Volumes I and II', 'NDXTTHWRDF1975', '1974-00-00', 570, '101', 'hc', 'OMNIBUS', '0405063229', '', '$7.00', 135762, 399, None, None), pub_authors = {261534: [(111389, 'T. G. L. Cockcroft', 'Cockcroft')], 676205: [(131531, 'George Noyes Miller', 'Miller')]}, pub_publishers = {570: 'Arno Press'}, pub_series = {399: 'Science Fiction [Arno Press]'}, cover_artists = {}, bgcolor = 1, display_type = 'publisher', user = <login.User instance>, index = 1
 /home/stoecker/isfdb/install/cgi-bin/common.py in PrintOnePub(pub=(261534, 'Index to the Weird Fiction Magazines: Volumes I and II', 'NDXTTHWRDF1975', '1974-00-00', 570, '101', 'hc', 'OMNIBUS', '0405063229', '', '$7.00', 135762, 399, None, None), pub_authors={261534: [(111389, 'T. G. L. Cockcroft', 'Cockcroft')], 676205: [(131531, 'George Noyes Miller', 'Miller')]}, pub_publishers={570: 'Arno Press'}, pub_series={399: 'Science Fiction [Arno Press]'}, cover_artists={}, bgcolor=1, display_type='publisher', user=<login.User instance>, index=1)
   1105 
   1106         # Publication title
=> 1107         print '<td dir="ltr">%s</td>' % ISFDBLink('pl.cgi', pub[PUB_PUBID], pub[PUB_TITLE], argument=getStylePub(pub[PUB_PUBID]))
   1108 
   1109         # Publication date unless this is a Publication Series, in which case we have already displayed the date
global ISFDBLink = <function ISFDBLink>, pub = (261534, 'Index to the Weird Fiction Magazines: Volumes I and II', 'NDXTTHWRDF1975', '1974-00-00', 570, '101', 'hc', 'OMNIBUS', '0405063229', '', '$7.00', 135762, 399, None, None), global PUB_PUBID = 0, global PUB_TITLE = 1, argument undefined, global getStylePub = <function getStylePub>
 /home/stoecker/isfdb/install/cgi-bin/library.py in ISFDBLink(script='pl.cgi', record_id=261534, displayed_value='Index to the Weird Fiction Magazines: Volumes I and II', brackets=False, argument='', transliterations=None)
    463         # use that function to retrieve transliterations
    464         elif trans_function and str(record_id).isdigit():
=>  465                 trans_values = trans_function(record_id)
    466         # If transliterated values have been found, add them to the link
    467         if trans_values:
trans_values = None, trans_function = <function SQLloadTransPubTitles>, record_id = 261534
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransPubTitles(pub_id=261534)
   1806 def SQLloadTransPubTitles(pub_id):
   1807         query = "select trans_pub_title from trans_pubs where pub_id=%d" % int(pub_id)
=> 1808         return _OneField(query)
   1809 
   1810 def SQLLoadTransPubTitlesList(pub_ids):
global _OneField = <function _OneField>, query = 'select trans_pub_title from trans_pubs where pub_id=261534'
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in _OneField(query='select trans_pub_title from trans_pubs where pub_id=261534')
     53 
     54 def _OneField(query):
=>   55         db.query(query)
     56         result = db.store_result()
     57         record = result.fetch_row()
global db = <_mysql.connection open to '127.0.0.1'>, db.query = <bound method Connection.query of <_mysql.connection open to '127.0.0.1'>>, query = 'select trans_pub_title from trans_pubs where pub_id=261534'
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select trans_pub_title from trans_pubs where pub_id=261534')
    237         if isinstance(query, bytearray):
    238             query = bytes(query)
=>  239         _mysql.connection.query(self, query)
    240 
    241     def _bytes_literal(self, bs):
global _mysql = <module 'MySQLdb._mysql' from '/usr/lib64/python2.7/site-packages/MySQLdb/_mysql.so'>, _mysql.connection = <type '_mysql.connection'>, _mysql.connection.query = <method 'query' of '_mysql.connection' objects>, self = <_mysql.connection open to '127.0.0.1'>, query = 'select trans_pub_title from trans_pubs where pub_id=261534'

<class 'MySQLdb._exceptions.ProgrammingError'>: (1146, "Table 'isfdb.trans_pubs' doesn't exist")
      args = (1146, "Table 'isfdb.trans_pubs' doesn't exist")
      message = ''