From 26ad5a93926683be518b8d4e29b6aee7a1383cf1 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 7 Sep 2013 17:07:32 +0000 Subject: [PATCH] hints: use MigrationItem Signed-off-by: Adam D. Barratt --- hints.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hints.py b/hints.py index 874c1b3..8971b3a 100644 --- a/hints.py +++ b/hints.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2011 Adam D. Barratt +# Copyright (C) 2013 Adam D. Barratt # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,7 +12,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from migrationitem import HintItem +from migrationitem import MigrationItem class HintCollection(object): def __init__(self): @@ -57,7 +57,7 @@ class Hint(object): if isinstance(self._packages, str): self._packages = self._packages.split(' ') - self._packages = [HintItem(x) for x in self._packages] + self._packages = [MigrationItem(x) for x in self._packages] def set_active(self, active): self._active = active