[glom] Python code: Remove unnecessary semicolons.



commit 24542d573e5f4c3036e06716a482c128ce18141d
Author: Murray Cumming <murrayc murrayc com>
Date:   Fri Aug 5 09:25:59 2016 +0200

    Python code: Remove unnecessary semicolons.

 ldtp/common.py                      |    2 +-
 ldtp/database-creation/create-db.py |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/ldtp/common.py b/ldtp/common.py
index 460172f..cc2263e 100644
--- a/ldtp/common.py
+++ b/ldtp/common.py
@@ -123,7 +123,7 @@ def wait_for_database_open():
 
 def check_small_business_integrity():
        if(ldtp.getrowcount(main_window, 'tblTableContent') != 9):
-               raise ldtp.LdtpExecutionError("Newly created database does not contain all 8 rows"); # Note 
there is one placeholder row
+               raise ldtp.LdtpExecutionError("Newly created database does not contain all 8 rows") # Note 
there is one placeholder row
 
        ldtp.selecttab(main_window, 'ptlListOrDetailsView', 'Details')
 
diff --git a/ldtp/database-creation/create-db.py b/ldtp/database-creation/create-db.py
index 4a96259..6cc7b40 100755
--- a/ldtp/database-creation/create-db.py
+++ b/ldtp/database-creation/create-db.py
@@ -64,8 +64,8 @@ try:
        doubleclickrow(creation_dialog, 'tblFiles', 'TestDatabase')
 
        # Call the new document 'Test', and save it as 'Test.glom':
-       settextvalue(creation_dialog, 'txtName', 'Test');
-       settextvalue(creation_dialog, 'txtTitle', 'Test');
+       settextvalue(creation_dialog, 'txtName', 'Test')
+       settextvalue(creation_dialog, 'txtTitle', 'Test')
 
        # Make sure we use the correct backend:
        common.select_backend(creation_dialog, backend)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]