Remove double declaration of __app__ and __version__

master
Mike Hiretsky 14 years ago
parent 6034e9f225
commit db4de25a12

@ -14,21 +14,19 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2.2.0.0"
__app__ = "calculate-builder"
import os
import re
import sys
import traceback
from os import path
from cl_builder import DataVarsBuilder, printNoColor, __version__, __app__
from cl_utils import process
from subprocess import STDOUT,PIPE
from cl_print import color_print
from shutil import copy2 as copy_with_perm
from cl_kernel_utils import KernelConfig,InitRamFs
from cl_builder import DataVarsBuilder, printNoColor
from cl_lang import lang

@ -14,7 +14,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from cl_kernel import cl_kernel, __app__, __version__
from cl_builder import __app__, __version__
from cl_kernel import cl_kernel
from cl_opt import opt
from cl_share_cmd import share_cmd
import os

Loading…
Cancel
Save