Changeset fbde393e9d751e9b6eadad46435ffa138e0cf447

Show
Ignore:
Timestamp:
07/02/10 01:10:04 (2 months ago)
Author:
John M. Schanck <john@…>
Parents:
18f4d42d3f06fb320182ac13cfe640fa240648c9
Children:
cded2ccaadf816658c4317224cf95feca768d3e7
git-committer:
John M. Schanck <john@anomos.info> / 2010-07-01T21:10:04Z-0400
Message:

Gui 2-byte nid issue

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • anondownloadgui.py

    r2b7540a rfbde393  
    5656from Anomos import LOG as log 
    5757from Anomos import pygeoip 
     58from Anomos import fnid 
    5859import makeatorrentgui 
    5960import Anomos.Crypto 
     
    706707        for ips in ips: 
    707708            for ip in ips: 
    708                 store.append([ip[0], ip[1], "\\x%02x"%ord(ip[2]), GEOIP.country_name_by_addr(ip[0])]) 
     709                store.append([ip[0], ip[1], "%s"%fnid(ip[2]), GEOIP.country_name_by_addr(ip[0])]) 
    709710 
    710711        self.treeView = gtk.TreeView(store)