diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-12-10 13:29:27 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-12-10 13:42:44 -0500 |
commit | fba1039db46156089840896d3b6aa90076872d73 (patch) | |
tree | a10d5766c67c4d323cd9731fbb67b62cb77d2d13 | |
parent | eclean: Delete empty directories (diff) | |
download | gentoolkit-fba1039db46156089840896d3b6aa90076872d73.tar.gz gentoolkit-fba1039db46156089840896d3b6aa90076872d73.tar.bz2 gentoolkit-fba1039db46156089840896d3b6aa90076872d73.zip |
eclean: Fix typos
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r-- | pym/gentoolkit/eclean/cli.py | 4 | ||||
-rw-r--r-- | pym/gentoolkit/eclean/search.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index 1d2f52b..1a99b3e 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -304,7 +304,7 @@ def parseArgs(options={}): options['size-limit'] = 0 options['verbose'] = False options['ignore-failure'] = False - # if called by a well-named symlink, set the acction accordingly: + # if called by a well-named symlink, set the action accordingly: action = None # temp print line to ensure it is the svn/branch code running, etc.. #print( "###### svn/branch/gentoolkit_eclean ####### ==> ", os.path.basename(sys.argv[0])) @@ -400,7 +400,7 @@ def doAction(action,options,exclude={}, output=None): ) # initialize our cleaner - cleaner = CleanUp( output.progress_controller) + cleaner = CleanUp(output.progress_controller) # actually clean files if something was found if clean_me: diff --git a/pym/gentoolkit/eclean/search.py b/pym/gentoolkit/eclean/search.py index ce455a3..58bd97e 100644 --- a/pym/gentoolkit/eclean/search.py +++ b/pym/gentoolkit/eclean/search.py @@ -574,7 +574,7 @@ def findPackages( del clean_me[cpv] continue if portage.cpv_getkey(cpv) in cp_all and port_dbapi.cpv_exists(cpv): - # exlusion because of --package-names + # exclusion because of --package-names del clean_me[cpv] # the getname method correctly supports FEATURES=binpkg-multi-instance, |