Browse Source

Merge branch 'query_fix' of stefan.schmidt/ID2T-toolkit into master

Aidmar Wainakh 6 years ago
parent
commit
22e6700e08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/ID2TLib/StatsDatabase.py

+ 1 - 1
code/ID2TLib/StatsDatabase.py

@@ -298,7 +298,7 @@ class StatsDatabase:
 
         # Print results if option print_results is True
         if print_results:
-            if len(result) == 1 and isinstance(result, list):
+            if isinstance(result, list) and len(result) == 1:
                 result = result[0]
                 print("Query returned 1 record:\n")
                 for i in range(0, len(result)):