aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-31 10:25:02 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-31 10:25:02 +0100
commit42531b8d4e8735a5cc44220a38d51540f6882242 (patch)
tree0e446958078c679759e1a7fa08714d7e55fdd386
parentba68390361631becba819bd076259a43d21c32d5 (diff)
trivialities
-rw-r--r--README.rst6
-rw-r--r--lesana/collection.py1
2 files changed, 3 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 648ed19..2ce1973 100644
--- a/README.rst
+++ b/README.rst
@@ -2,9 +2,9 @@
lesana - a collection manager
===============================
-lesana is a python3 library to organize collections of various kinds
-designed to have a data storage / serialization format that is friendly
-to git and other VCSs, but decent performances.
+lesana is a python3 library to organize collections of various kinds.
+It is designed to have a data storage / serialization format that is
+friendly to git and other VCSs, but decent performances.
To reach this aim it uses yaml_ as its serialization format, which is
easy to store in a VCS, share between people and syncronize between
diff --git a/lesana/collection.py b/lesana/collection.py
index b3a56ff..ad1c5c2 100644
--- a/lesana/collection.py
+++ b/lesana/collection.py
@@ -201,7 +201,6 @@ class Collection(object):
def _match_to_entry(self, match):
fname = match.document.get_value(0).decode('utf-8')
- print(type(fname))
if self.safe:
data = ruamel.yaml.safe_load(match.document.get_data())
else: