fixed error message, thanks Anthony

This commit is contained in:
mdipierro
2014-01-04 20:19:20 -06:00
parent efcf8c0c95
commit 76b3906ade
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2014.01.03.21.59.04
Version 2.8.2-stable+timestamp.2014.01.04.20.18.32
+2 -1
View File
@@ -8455,7 +8455,8 @@ def index():
fields = colnames or [f[0] for f in columns]
if len(fields) != len(set(fields)):
raise RuntimeError(
"as_dict=True not supported if ambiguous column names")
"Result set includes duplicate column names."
"Specify unique column names using the 'colnames' argument")
# will hold our finished resultset in a list
data = adapter._fetchall()
# convert the list for each row into a dictionary so it's