From 3cec70d3b3d460eb4016715028f540d357341788 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 26 Jun 2013 19:41:53 +0000 Subject: [PATCH] Remove duplicate tests git-svn-id: file:///home/phd/archive/SVN/phdru.name/scripts@149 7bb0bf08-9e0d-0410-b083-99cee3bf18b8 --- dotfiles2html/dotfiles2html.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dotfiles2html/dotfiles2html.py b/dotfiles2html/dotfiles2html.py index bf0ab7c..b463f4e 100755 --- a/dotfiles2html/dotfiles2html.py +++ b/dotfiles2html/dotfiles2html.py @@ -78,13 +78,20 @@ def process_dotfile(i, fname, ftype, file_types): file.write(text.replace('', '')) file.close() - elif fname in('mailcap', 'mc.ext', 'menu') and os.path.exists(fname): + elif fname in ('mailcap', 'mc.ext', 'menu') and os.path.exists(fname): file = open(fname, 'r') text = file.read() file.close() file = open(fname, 'w') text = text.replace('mplay', 'mplayer') text = text.replace('mplayerer', 'mplayer') + if fname == 'mailcap': + text = text.replace( + '-a -n "`whereis smplayer`" -a -n "`whereis smplayer`"', + '-a -n "`whereis smplayer`"') + text = text.replace( + '-a -n "`whereis mplayer`" -a -n "`whereis mplayer`"', + '-a -n "`whereis mplayer`"') file.write(text) file.close() -- 2.39.2