fix up typo

This commit is contained in:
Dennis Gilmore 2014-12-09 11:51:30 -06:00
parent add538d7b4
commit d865c94330
1 changed files with 2 additions and 2 deletions

View File

@ -1347,7 +1347,7 @@ class Pungi(pypungi.PungiBase):
def _shortenVolID(self):
"""shorten the volume id to make sure its under 32 characters"""
subsitutions = {'Workstation': 'WS',
substitutions = {'Workstation': 'WS',
'Server': 'S',
'Cloud': 'C',
'Alpha': 'A',
@ -1357,7 +1357,7 @@ class Pungi(pypungi.PungiBase):
version = self.config.get('pungi', 'version')
arch = self.tree_arch
for k, v in subsitutions.iteritems():
for k, v in substitutions.iteritems():
if k in name:
name = name.replace(k, v)
if k in version: