diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-12 03:31:04 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-12 03:31:04 +0000 |
commit | 8bce43bf7b8099cd595e6681903a70e575d2a346 (patch) | |
tree | 70526a4d7aadba886ad9dcc91559c127965b6a50 /gentoo/utils.py | |
parent | gentoo/utils.py: fix broken logger (diff) | |
download | anaconda-8bce43bf7b8099cd595e6681903a70e575d2a346.tar.gz anaconda-8bce43bf7b8099cd595e6681903a70e575d2a346.tar.bz2 anaconda-8bce43bf7b8099cd595e6681903a70e575d2a346.zip |
gentoo/utils.py: fixed logger again
Diffstat (limited to 'gentoo/utils.py')
-rw-r--r-- | gentoo/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoo/utils.py b/gentoo/utils.py index 0652391..8f04dc1 100644 --- a/gentoo/utils.py +++ b/gentoo/utils.py @@ -276,7 +276,7 @@ class GentooInstall: os.environ["MAKEOPTS"] = "-j1" if not self._portage.install(atom): log = open("/tmp/emerge-fail.log", "a") - log.writeln(atom+" failed to install the second time :(\n") + log.write(atom+" failed to install the second time :(\n") log.close() del os.environ["MAKEOPTS"] |