From 609418975e8eacb4c270467c70a6368dde718634 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Mon, 27 Jan 2014 13:33:04 +0100 Subject: [PATCH] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index cfc344e..e3aaaf3 100644 --- a/README.rst +++ b/README.rst @@ -18,14 +18,14 @@ Remove duplicate files .. code:: python - from sweeper import file_dups + from sweeper import rm_file_dups rm_file_dups(['images']) Perform custom action .. code:: python - from sweeper import file_dups + from sweeper import iter_file_dups for files in iter_file_dups(['images']): for fname in files: print('found duplicate file with name: %s' % fname)