Explorar o código

Fixed type-error occuring for single-element query results

Stefan Schmidt %!s(int64=6) %!d(string=hai) anos
pai
achega
b788c425a6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)):