From b5efb15fe7a68a61e6d1bc0ac4651a2f0b5def4e Mon Sep 17 00:00:00 2001 From: lxnay Date: Sat, 3 Feb 2007 08:23:21 +0000 Subject: [PATCH] constants <-- variables git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@46 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- handlers/entropy-specifications-generator | 2 +- libraries/{entropyVariables.py => entropyConstants.py} | 0 libraries/entropyTools.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename libraries/{entropyVariables.py => entropyConstants.py} (100%) diff --git a/handlers/entropy-specifications-generator b/handlers/entropy-specifications-generator index 21c514e98..e64ed4fe3 100644 --- a/handlers/entropy-specifications-generator +++ b/handlers/entropy-specifications-generator @@ -11,7 +11,7 @@ import string sys.path.append('../libraries') import entropyTools -from entropyVariables import * +from entropyConstants import * # System functions diff --git a/libraries/entropyVariables.py b/libraries/entropyConstants.py similarity index 100% rename from libraries/entropyVariables.py rename to libraries/entropyConstants.py diff --git a/libraries/entropyTools.py b/libraries/entropyTools.py index ae0cad2d7..cf32b388c 100644 --- a/libraries/entropyTools.py +++ b/libraries/entropyTools.py @@ -4,7 +4,7 @@ # DESCRIPTION: # generic tools for all the handlers applications -from entropyVariables import * +from entropyConstants import * # This function extracts all the info from a .tbz2 file and returns them def extractPkgData(package): @@ -93,4 +93,4 @@ def extractPkgData(package): # return all the collected info - return pData \ No newline at end of file + return pData