From 0c9e60e741e93b599af8a7c976112dc587ad23de Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Fri, 22 Jun 2001 23:56:28 +0000 Subject: various pychecker fixups --- dispatch.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dispatch.py') diff --git a/dispatch.py b/dispatch.py index 858edb2fe..98129c1bc 100644 --- a/dispatch.py +++ b/dispatch.py @@ -13,6 +13,10 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # +DISPATCH_BACK = -1 +DISPATCH_FORWARD = 1 +DISPATCH_NOOP = None + import string from types import * from packages import readPackages, checkDependencies, doInstall @@ -25,10 +29,6 @@ from bootloader import partitioningComplete, writeBootloader from flags import flags from upgrade import upgradeFindPackages -DISPATCH_BACK = -1 -DISPATCH_FORWARD = 1 -DISPATCH_NOOP = None - # These are all of the install steps, in order. Note that upgrade and # install steps are the same thing! Upgrades skip install steps, while # installs skip upgrade steps. -- cgit