From 73412513b8129862dafbc230804e8e6045a895e0 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 20 Apr 2012 08:09:43 -0400 Subject: [PATCH] Fix bug in src. Should not code this early :) --- file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file b/file index b672934e4ee..90d6892601d 100755 --- a/file +++ b/file @@ -93,7 +93,7 @@ if path: path = os.path.expanduser(path) src = params.get('src', None) if src: - path = os.path.expanduser(src) + src = os.path.expanduser(src) dest = params.get('dest', None) mode = params.get('mode', None) owner = params.get('owner', None)