From f1eb4e0b23c0e8dd8aedcba3897e929c312372c1 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Sat, 29 Jun 2013 16:51:20 +0200 Subject: [PATCH] doc change --- relational/relation.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/relational/relation.py b/relational/relation.py index ed7a870..8b74bb0 100644 --- a/relational/relation.py +++ b/relational/relation.py @@ -35,9 +35,7 @@ class relation (object): that file. If no parameter is supplied an empty relation is created. Empty relations are used in internal operations. By default the file will be handled like a comma separated as described in - RFC4180, but it can also be handled like a space separated file (previous - default format) setting to false the 2nd parameter. - The old format is no longer supported.''' + RFC4180.''' self._readonly=False @@ -70,7 +68,7 @@ class relation (object): '''Saves the relation in a file. By default will save using the csv format as defined in RFC4180, but setting comma_separated to False, it will use the old format with space separated values. - The old format is no longer supported.''' + ''' fp=file(filename,'w') #Opening file in write mode