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