diff --git a/bin/listsongs b/bin/listsongs --- a/bin/listsongs +++ b/bin/listsongs @@ -21,7 +21,7 @@ graph = SyncedGraph(networking.rdfdb.url def printSongs(result): with graph.currentState() as current: for song in current.subjects(RDF.type, L9['Song']): - print song + print(song) reactor.stop()