~debfactory-devs/debfactory/devel

« back to all changes in this revision

Viewing changes to bin/import_uploaders_gpg_keys.py

  • Committer: Christoph Korn
  • Date: 2013-05-12 13:32:21 UTC
  • Revision ID: c_korn@gmx.de-20130512133221-4abn4o3y7nvr6axd
import_uploaders_gpg_keys.py: Fix the member rdf URL

The complete URL is now already provided from the team rdf.
Honestly, I do not understand why because the "https://launchpad.net"
prefix clearly is not in the team rdf:
<foaf:member rdf:resource="/~c-korn/+rdf"/>

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        for statement in results:
60
60
            print statement[0]
61
61
            g2 = Graph()
62
 
            g2.parse('https://launchpad.net/%s' % statement[0])
 
62
            g2.parse(statement[0])
63
63
            results2 = g2.query("SELECT ?fingerprint WHERE { ?any wot:fingerprint ?fingerprint . }", 
64
64
                 initNs=dict( wot=Namespace("http://xmlns.com/wot/0.1/")))
65
65
            for statement2 in results2: