summaryrefslogtreecommitdiffstats
path: root/pyanaconda/bootloader.py
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2012-07-19 11:04:26 -0700
committerJesse Keating <jkeating@redhat.com>2012-07-19 11:04:26 -0700
commit9610d3caf7ba9f393b105d5ce92724b6c4092b1e (patch)
tree77a8ae9d21c9de7e4906f92bbb569963ad23e358 /pyanaconda/bootloader.py
parente8842b41520e39cb256659ffa2371602b5c64a03 (diff)
downloadanaconda-9610d3caf7ba9f393b105d5ce92724b6c4092b1e.tar.gz
anaconda-9610d3caf7ba9f393b105d5ce92724b6c4092b1e.tar.xz
anaconda-9610d3caf7ba9f393b105d5ce92724b6c4092b1e.zip
Fix a typo (#841573)
Diffstat (limited to 'pyanaconda/bootloader.py')
-rw-r--r--pyanaconda/bootloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index ea4de5ed6..f375f5bd3 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -1627,7 +1627,7 @@ class GRUB2(GRUB):
defaults_file = "%s%s" % (ROOT_PATH, self.defaults_file)
defaults = open(defaults_file, "w+")
defaults.write("GRUB_TIMEOUT=%d\n" % self.timeout)
- defaults.write("GRUB_DISTRIBUTOR=\"$(sed 's, release .*$,,g' /etc/system-release)\""))
+ defaults.write("GRUB_DISTRIBUTOR=\"$(sed 's, release .*$,,g' /etc/system-release)\"")
defaults.write("GRUB_DEFAULT=saved\n")
if self.console and self.console.startswith("ttyS"):
defaults.write("GRUB_TERMINAL=\"serial console\"\n")