revisor.py | 2 +- revisor/cfg.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit d99b0d1324520739671d57183c2dbaf38db40ee1 Merge: b23f8d3... 2f4066b... Author: Jeroen van Meeuwen (Ergo Project) <jeroen.van.meeu...@ergo-project.org> Date: Thu Jan 27 09:53:37 2011 -0700 Merge branch 'master' of ssh://git.fedorahosted.org/git/revisor commit b23f8d32415f51c41807a17dba54b62fc7bdbf0a Author: Jeroen van Meeuwen (Ergo Project) <jeroen.van.meeu...@ergo-project.org> Date: Thu Jan 27 09:37:23 2011 -0700 Fix typos diff --git a/revisor/cfg.py b/revisor/cfg.py index d41edd7..c3709d7 100644 --- a/revisor/cfg.py +++ b/revisor/cfg.py @@ -1266,10 +1266,10 @@ class Runtime: boot_dir = None # This is the old location for anaconda blobs - if os.path.is_dir('/usr/lib/anaconda-runtime/boot/'): + if os.path.isdir('/usr/lib/anaconda-runtime/boot/'): boot_dir = "/usr/lib/anaconda-runtime/boot/" # And the new location is... supposedly... - elif os.path.is_dir('/usr/share/anaconda/boot/'): + elif os.path.isdir('/usr/share/anaconda/boot/'): boot_dir = "/usr/share/anaconda/boot/" if not boot_dir == None: commit 94e580cd77c4f0543029fdfe998a79eab594575f Author: Jeroen van Meeuwen (Ergo Project) <jeroen.van.meeu...@ergo-project.org> Date: Thu Jan 27 09:36:34 2011 -0700 Fix typo diff --git a/revisor.py b/revisor.py index e46e565..96772e5 100755 --- a/revisor.py +++ b/revisor.py @@ -39,7 +39,7 @@ elif os.access("/usr/libexec/anaconda/", os.R_OK): elif os.access("/usr/lib64/anaconda/", os.R_OK): anaconda_path = "/usr/lib64/anaconda/" elif os.access("/usr/lib/anaconda/", os.R_OK): - anaconda_path = "/usr/lib/anaconda/") + anaconda_path = "/usr/lib/anaconda/" else: print >> sys.stderr, _("Cannot find the anaconda scripts required to run Revisor") sys.exit(1) _______________________________________________ revisor-devel mailing list revisor-devel@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/revisor-devel