Add warning README.rst and fix pep8.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Tue, 19 Mar 2013 14:29:01 +0000 (15:29 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Tue, 19 Mar 2013 22:20:46 +0000 (23:20 +0100)
mediagoblin/plugins/piwigo/README.rst [new file with mode: 0644]
mediagoblin/plugins/piwigo/tools.py

diff --git a/mediagoblin/plugins/piwigo/README.rst b/mediagoblin/plugins/piwigo/README.rst
new file mode 100644 (file)
index 0000000..0c71ffb
--- /dev/null
@@ -0,0 +1,23 @@
+===================
+ piwigo api plugin
+===================
+
+.. danger::
+   This plugin does not work.
+   It might make your instance unstable or even insecure.
+   So do not use it, unless you want to help to develop it.
+
+.. warning::
+   You should not depend on this plugin in any way for now.
+   It might even go away without any notice.
+
+Okay, so if you still want to test this plugin,
+add the following to your mediagoblin_local.ini:
+
+.. code-block:: ini
+
+   [plugins]
+   [[mediagoblin.plugins.piwigo]]
+
+Then try to connect using some piwigo client.
+There should be some logging, that might help.
index d2f7da1e0cfd049e4fafa0a5b29ea9ea552f4b9a..e53d94b97c744858451ff23c64e7946116a817a9 100644 (file)
@@ -41,7 +41,7 @@ class PwgNamedArray(list):
 
 
 def _fill_element_dict(el, data, as_attr=()):
-    for k,v in data.iteritems():
+    for k, v in data.iteritems():
         if k in as_attr:
             if not isinstance(v, basestring):
                 v = str(v)