From 297bb368fe2349effb96c302d3bb5bbb9db1ff81 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Mar 16 2011 21:00:47 +0000 Subject: Fix a syntax error in my last upgrade-related commit. --- diff --git a/pyanaconda/textw/upgrade_text.py b/pyanaconda/textw/upgrade_text.py index 90d3fbf..ed00ad9 100644 --- a/pyanaconda/textw/upgrade_text.py +++ b/pyanaconda/textw/upgrade_text.py @@ -107,7 +107,7 @@ class UpgradeSwapWindow: text = _("You currently have %dMB of swap configured, which " "is less than the recommended miminum of %sMB. You " "may optionally create more swap space on one of " - "your file systems now.") % (iutil.swapAmount()/1024, iutil.swapSuggestion()[0]/1024)) + "your file systems now.") % (iutil.swapAmount()/1024, iutil.swapSuggestion()[0]/1024) tb = TextboxReflowed(60, text) amount = Entry(10, scroll = 0)