summaryrefslogtreecommitdiff
path: root/src/dh_xul-ext
diff options
context:
space:
mode:
Diffstat (limited to 'src/dh_xul-ext')
-rwxr-xr-xsrc/dh_xul-ext4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dh_xul-ext b/src/dh_xul-ext
index 8447e01..58aa8d5 100755
--- a/src/dh_xul-ext
+++ b/src/dh_xul-ext
@@ -65,7 +65,9 @@ def get_supported_apps(script_name, xul_apps, install_rdf, package, verbose=Fals
results = query.execute(model)
# append to id_max_min tripe to array
for target in results:
- id_max_min.append (( str(target["id"]), str(target["max"]), str (target["min"]) ))
+ id_max_min.append ((target["id"].literal_value["string"],
+ target["max"].literal_value["string"],
+ target["min"].literal_value["string"]))
if verbose:
print "%s: %s supports %i XUL application(s):" % (script_name, package, len(id_max_min))