summaryrefslogtreecommitdiff
path: root/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'example.py')
-rwxr-xr-xexample.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example.py b/example.py
index 8cd5c31..ba3e09c 100755
--- a/example.py
+++ b/example.py
@@ -14,7 +14,7 @@ tgts = (
def list_targets(tgts):
for tgt in tgts:
- sys.stdout.write('%s\n' % tgt.name)
+ sys.stdout.write('%s\n %s\n' % (tgt.name, str(tgt)))
# parse the commandline
parser = argparse.ArgumentParser()