source: sasview/sasview/__init__.py @ 463e7ffc

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 463e7ffc was 463e7ffc, checked in by Ricardo Ferraz Leal <ricleal@…>, 7 years ago

getLogger with module name

  • Property mode set to 100644
File size: 649 bytes
Line 
1__version__ = "4.1"
2__build__ = "GIT_COMMIT"
3
4import logging
5logger = logging.getLogger(__name__)
6
7try:
8    import subprocess
9    import os
10    import platform
11    FNULL = open(os.devnull, 'w')
12    if platform.system() == "Windows":
13        args = ['git', 'describe', '--tags']
14    else:
15        args = ['git describe --tags']
16    git_revision = subprocess.check_output(args,
17                    stderr=FNULL,
18                    shell=True)
19    __build__ = str(git_revision).strip()
20except subprocess.CalledProcessError as cpe:
21    logger.warning("Error while determining build number\n  Using command:\n %s \n Output:\n %s"% (cpe.cmd,cpe.output))
Note: See TracBrowser for help on using the repository browser.