summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README.md5
-rwxr-xr-xwikiquery4
3 files changed, 8 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8eba6c8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+src/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f813425
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# Installation
+
+Run `pip install --user -r requirements.txt`
+
+This will get the requirements defined in requirements.txt installed in a sub directory /src
diff --git a/wikiquery b/wikiquery
index ecfd0aa..ffbd1c7 100755
--- a/wikiquery
+++ b/wikiquery
@@ -13,11 +13,11 @@ def stringify(o):
if isinstance(o, list):
output = []
for i, item in enumerate(o, 1):
- output.append("%s: %s" % (i, item.encode("utf-8", "replace")))
+ output.append("%s: %s" % (i, item))
return ' %s' % ', '.join(output)
else:
- return o.encode("utf-8", "replace")
+ return o;
def display(o):
print (stringify(o))