From 569f6fd505aa9e77a4d0ae3b2f5ca307be50bf8d Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 29 Dec 2013 20:54:36 +0100 Subject: [PATCH] ``quoted'' -> `quoted' --- common/tasks/host.py | 2 +- plugins/admin_user/tasks.py | 2 +- plugins/unattended_upgrades/tasks.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/tasks/host.py b/common/tasks/host.py index f211df5..792a27a 100644 --- a/common/tasks/host.py +++ b/common/tasks/host.py @@ -34,5 +34,5 @@ class CheckHostDependencies(Task): try: log_check_call(['/usr/bin/dpkg-query', '-s', package]) except CalledProcessError: - msg = "The package ``{0}\'\' is not installed".format(package) + msg = "The package `{0}\' is not installed".format(package) raise TaskError(msg) diff --git a/plugins/admin_user/tasks.py b/plugins/admin_user/tasks.py index 381abbb..56ebd9d 100644 --- a/plugins/admin_user/tasks.py +++ b/plugins/admin_user/tasks.py @@ -6,7 +6,7 @@ import os class AddSudoPackage(Task): - description = 'Adding ``sudo\'\' to the image packages' + description = 'Adding `sudo\' to the image packages' phase = phases.preparation predecessors = [apt.AddDefaultSources] diff --git a/plugins/unattended_upgrades/tasks.py b/plugins/unattended_upgrades/tasks.py index a8e3dd5..97ea89a 100644 --- a/plugins/unattended_upgrades/tasks.py +++ b/plugins/unattended_upgrades/tasks.py @@ -4,7 +4,7 @@ from common.tasks import apt class AddUnattendedUpgradesPackage(Task): - description = 'Adding ``unattended-upgrades\'\' to the image packages' + description = 'Adding `unattended-upgrades\' to the image packages' phase = phases.preparation predecessors = [apt.AddDefaultSources]