Skip to content

Instantly share code, notes, and snippets.

@chuenniger
Created January 20, 2023 14:14
Show Gist options
  • Save chuenniger/0d5034b3dd761834c16c508ab6a3ca15 to your computer and use it in GitHub Desktop.
Save chuenniger/0d5034b3dd761834c16c508ab6a3ca15 to your computer and use it in GitHub Desktop.
Python3 xmlrpc - Unknown tag error - fix
# Error: xmlrpc.client.ResponseError: ResponseError("unknown tag 'uint'")
from xmlrpc import client
# fix: xmlrpc doesn't know the XML-RPC type 'uint'
client.Unmarshaller.dispatch['uint'] = client.Unmarshaller.end_int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment