--- BitTorrent-4.24.2/BitTorrent/AutoUpdateButler.py.orig	2006-10-10 00:10:18.000000000 +0100
+++ BitTorrent-4.24.2/BitTorrent/AutoUpdateButler.py	2006-10-11 08:28:54.000000000 +0100
@@ -299,7 +299,7 @@
 
     def _check_signature(self, torrentfile, signature):
         """Check the torrent file's signature using the public key."""
-        public_key_file = open(os.path.join(doc_root, 'public.key'), 'rb')
+        public_key_file = open('@@PKIDIR@@/bittorrent/public.key', 'rb')
         public_key = pickle.load(public_key_file)
         public_key_file.close()
         h = sha(torrentfile).digest()