From 4d74db5cdb9ca3e8fee2954a92076d3f84990840 Mon Sep 17 00:00:00 2001 From: Igor Krivenko Date: Thu, 9 Jun 2016 18:11:55 +0200 Subject: [PATCH] Corrected version.py --- python/version.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/version.py.in b/python/version.py.in index 736d90d3..ea412282 100644 --- a/python/version.py.in +++ b/python/version.py.in @@ -21,10 +21,10 @@ version = "@DFT_TOOLS_VERSION@" triqs_hash = "@TRIQS_GIT_HASH@" -cthyb_hash = "@CTHYB_GIT_HASH@" +dft_tools_hash = "@DFT_TOOLS_GIT_HASH@" def show_version(): print "\nYou are using the dft_tools version %s\n"%version def show_git_hash(): - print "\nYou are using the dft_tools git hash %s based on triqs git hash %s\n"%(cthyb_hash, triqs_hash) + print "\nYou are using the dft_tools git hash %s based on triqs git hash %s\n"%(dft_tools_hash, triqs_hash)