Python 3 support

pull/9/head
Jeremy Carbaugh 2013-11-02 02:54:33 -04:00
rodzic 880fd5f240
commit 52748e92b4
1 zmienionych plików z 12 dodań i 12 usunięć

Wyświetl plik

@ -149,25 +149,25 @@ if __name__ == '__main__':
wf = finger(args.acct, rel=args.rel) wf = finger(args.acct, rel=args.rel)
print "--- %s ---" % wf.subject print("--- %s ---" % wf.subject)
if args.rel: if args.rel:
link = wf.find_link(args.rel) link = wf.find_link(args.rel)
if link is None: if link is None:
print "*** Link not found for rel=%s" % args.rel print("*** Link not found for rel=%s" % args.rel)
print "%s:\n\t%s" % (link.rel, link.href) print("%s:\n\t%s" % (link.rel, link.href))
else: else:
print "Activity Streams: ", wf.activity_streams print("Activity Streams: ", wf.activity_streams)
print "Avatar: ", wf.avatar print("Avatar: ", wf.avatar)
print "HCard: ", wf.hcard print("HCard: ", wf.hcard)
print "OpenID: ", wf.open_id print("OpenID: ", wf.open_id)
print "Open Social: ", wf.opensocial print("Open Social: ", wf.opensocial)
print "Portable Contacts: ", wf.portable_contacts print("Portable Contacts: ", wf.portable_contacts)
print "Profile: ", wf.profile print("Profile: ", wf.profile)
print "WebFist: ", wf.webfist print("WebFist: ", wf.webfist)
print "XFN: ", wf.rel("http://gmpg.org/xfn/11") print("XFN: ", wf.rel("http://gmpg.org/xfn/11"))