diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-08-09 16:09:39 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-08-09 16:09:39 -0400 |
commit | 6e34c9aee6561d4ba1eeab51cbeceed4a37d701f (patch) | |
tree | 69346b605523bfe373abfcefd2afbcf16622f5c4 | |
parent | bin/grsup: WorldConf.install() now does a cleanup automatically. (diff) | |
download | grss-6e34c9aee6561d4ba1eeab51cbeceed4a37d701f.tar.gz grss-6e34c9aee6561d4ba1eeab51cbeceed4a37d701f.tar.bz2 grss-6e34c9aee6561d4ba1eeab51cbeceed4a37d701f.zip |
bin/grsup: fix typo.
-rwxr-xr-x | bin/grsup | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |