Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2009-06-20 01:03:18 (GMT)
committer Martin Dengler <martin@martindengler.com>2009-06-20 01:03:18 (GMT)
commit83ea96523cb39d61ce4bfcd2aa1318f3b6e4e270 (patch)
tree5e24c52c693481fc3304c0b589e021d509dd28dd
parent099e5e7a96d87ac077eacf1c423cf8156292afbd (diff)
fix typo in error message
-rw-r--r--appliance.py2
-rw-r--r--live.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/appliance.py b/appliance.py
index c168c5f..46b89a9 100644
--- a/appliance.py
+++ b/appliance.py
@@ -23,7 +23,7 @@ def main():
appliance_date = strftime("%Y%m%d", gmtime())
appliance_name = 'soas2-%s' % appliance_date
if os.path.exists(os.path.join(appliances_dir, appliance_name + '.tar.gz')):
- print 'Appliance %s exist already' % appliance_name
+ print 'Appliance %s exists already' % appliance_name
sys.exit(2)
ks = imgcreate.read_kickstart(os.path.join(base_dir, 'soas-appliance.ks'))
diff --git a/live.py b/live.py
index 108daf9..fa9260c 100644
--- a/live.py
+++ b/live.py
@@ -20,7 +20,7 @@ def main():
image_date = strftime("%Y%m%d%H%M", gmtime())
image_name = 'Soas2-%s' % image_date
if os.path.exists(os.path.join(images_dir, image_name + '.iso')):
- print 'Image %s exist already' % image_name
+ print 'Image %s exists already' % image_name
sys.exit(2)
ks = imgcreate.read_kickstart(os.path.join(base_dir, 'soas-sugar.ks'))