From 6e34c9aee6561d4ba1eeab51cbeceed4a37d701f Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Sun, 9 Aug 2015 16:09:39 -0400 Subject: bin/grsup: fix typo. --- bin/grsup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/grsup b/bin/grsup index 5f03131..74670cd 100755 --- a/bin/grsup +++ b/bin/grsup @@ -233,7 +233,7 @@ def main(): if os.path.isfile(oldmakeconf): if not filecmp.cmp(newmakeconf, oldmakeconf): print('New make.conf differs from local version. Backing up as make.conf.old') - shutil(oldmakeconf, '%s.old' % oldmakeconf) + shutil.copy(oldmakeconf, '%s.old' % oldmakeconf) shutil.copy(newmakeconf, oldmakeconf) # 1. Install all world.conf files. -- cgit v1.2.3-65-gdbad