From 1c778b471a96868d186478e37709b8f50fdd3aa7 Mon Sep 17 00:00:00 2001 From: Sean Hammond Date: Wed, 11 Nov 2009 15:17:54 +0000 Subject: [PATCH] Tweak a comment. --- dotfilemanager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfilemanager.py b/dotfilemanager.py index 322114e..7b6f8d4 100755 --- a/dotfilemanager.py +++ b/dotfilemanager.py @@ -125,9 +125,9 @@ def get_target_paths(to_dir): else: if HOSTNAME_SEPARATOR in filename: # This appears to be a filename with a trailing - # hostname, e.g. _muttrc_dulip. If the trailing hostname - # matches the hostname of this computer then we link to - # it. + # hostname, e.g. _muttrc__dulip. If the trailing + # hostname matches the hostname of this host then we + # link to it. hostname = filename.split(HOSTNAME_SEPARATOR)[-1] if hostname == HOSTNAME: path = os.path.join(to_dir,filename)