summaryrefslogtreecommitdiffstats
path: root/pym/portage/sets/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/sets/__init__.py')
-rw-r--r--pym/portage/sets/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage/sets/__init__.py b/pym/portage/sets/__init__.py
index 3b8084ab3..6c5f850ad 100644
--- a/pym/portage/sets/__init__.py
+++ b/pym/portage/sets/__init__.py
@@ -201,8 +201,8 @@ if __name__ == "__main__":
sc = load_default_config(portage.settings, portage.db["/"])
l, e = sc.getSets()
for x in l:
- print x+":"
- print "DESCRIPTION = %s" % l[x].getMetadata("Description")
+ print(x+":")
+ print("DESCRIPTION = %s" % l[x].getMetadata("Description"))
for n in sorted(l[x].getAtoms()):
- print "- "+n
- print
+ print("- "+n)
+ print()