summaryrefslogtreecommitdiff
path: root/pyuno/demo/biblioaccess.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/demo/biblioaccess.py')
-rw-r--r--pyuno/demo/biblioaccess.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/demo/biblioaccess.py b/pyuno/demo/biblioaccess.py
index 0e5d0b4c8071..5ad5a2625f01 100644
--- a/pyuno/demo/biblioaccess.py
+++ b/pyuno/demo/biblioaccess.py
@@ -37,7 +37,7 @@ def main():
rowset.CommandType = COMMAND
rowset.Command = "SELECT IDENTIFIER, AUTHOR FROM biblio"
- rowset.execute();
+ rowset.execute()
print("Identifier\tAuthor")
@@ -46,7 +46,7 @@ def main():
while rowset.next():
print(rowset.getString(id) + "\t" + repr(rowset.getString(author)))
- rowset.dispose();
+ rowset.dispose()
main()