Page temporarily down due to server move
--> --> AttributeError | Python 3.8.10: /usr/bin/python Wed Feb 26 14:58:26 2025 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/usr/www/users/kitterma/kitterman/getspf2.py in <module> |
102 formdomain = 'example.com' |
103 print("Page temporarily down due to server move") |
=> 104 if form.has_key("serial"): |
105 serial = form["serial"].value |
106 else: |
form = FieldStorage(None, None, []), form.has_key undefined |
/usr/lib/python3.8/cgi.py in __getattr__(self=FieldStorage(None, None, []), name='has_key') |
504 def __getattr__(self, name): |
505 if name != 'value': |
=> 506 raise AttributeError(name) |
507 if self.file: |
508 self.file.seek(0) |
builtin AttributeError = <class 'AttributeError'>, name = 'has_key' |
AttributeError: has_key
args =
('has_key',)
with_traceback =
<built-in method with_traceback of AttributeError object>