summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py8
1 files changed, 4 insertions, 4 deletions
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.