[med-svn] r1354 - trunk/community/infrastructure/test
hanska-guest at alioth.debian.org
hanska-guest at alioth.debian.org
Mon Feb 11 10:07:14 UTC 2008
Author: hanska-guest
Date: 2008-02-11 10:07:13 +0000 (Mon, 11 Feb 2008)
New Revision: 1354
Modified:
trunk/community/infrastructure/test/cddtasktools.py
Log:
Fixed some typos in error messages.
Modified: trunk/community/infrastructure/test/cddtasktools.py
===================================================================
--- trunk/community/infrastructure/test/cddtasktools.py 2008-02-11 09:58:47 UTC (rev 1353)
+++ trunk/community/infrastructure/test/cddtasktools.py 2008-02-11 10:07:13 UTC (rev 1354)
@@ -302,35 +302,35 @@
if dep != None:
dep.homepage = stanza['homepage']
else:
- print >>stderr, "Dep not initiatet before Homepage %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before Homepage %s -> something is wrong." \
% stanza['homepage']
elif key == 'section':
if dep != None:
dep.section = stanza['section']
else:
- print >>stderr, "Dep not initiatet before Section %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before Section %s -> something is wrong." \
% stanza['license']
elif key == 'License':
if dep != None:
dep.license = stanza['license']
else:
- print >>stderr, "Dep not initiatet before License %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before License %s -> something is wrong." \
% stanza['license']
elif key == 'WNPP':
if dep != None:
dep.wnpp = stanza['wnpp']
else:
- print >>stderr, "Dep not initiatet before WNPP %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before WNPP %s -> something is wrong." \
% stanza['wnpp']
elif key == 'Pkg-URL':
if dep != None:
dep.pkgURL = stanza['pkg-url']
else:
- print >>stderr, "Dep not initiatet before Pkg-URL %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before Pkg-URL %s -> something is wrong." \
% stanza['pkg-url']
elif key == 'Pkg-Description':
if dep == None:
- print >>stderr, "Dep not initiatet before Pkg-Description %s -> something is wrong." \
+ print >>stderr, "Dep not initiated before Pkg-Description %s -> something is wrong." \
% stanza['pkg-description'].splitlines()[0]
else:
(dep.pkgShortDesc, dep.pkgLongDesc) = SplitDescription(stanza['pkg-description'])
More information about the debian-med-commit
mailing list