mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-20 15:30:28 +01:00
version 0.6.1
This commit is contained in:
parent
39196b96e7
commit
3b2cef4857
|
|
@ -1,6 +1,13 @@
|
|||
Changelog
|
||||
---------
|
||||
|
||||
PyHamTools 0.6.0
|
||||
================
|
||||
|
||||
28. January 2018
|
||||
* Minor bugfix for lookuplib which used with country-files.com
|
||||
|
||||
|
||||
PyHamTools 0.6.0
|
||||
================
|
||||
|
||||
|
|
|
|||
|
|
@ -1000,6 +1000,8 @@ class LookupLib(object):
|
|||
|
||||
# from cwd
|
||||
if os.path.exists(cwdFile):
|
||||
# country mapping files contains the ADIF identifiers of a particular
|
||||
# country since the country-files do not provide this information (only DXCC id)
|
||||
country_mapping_filename = cwdFile
|
||||
# from package
|
||||
elif os.path.exists(pkgFile):
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
VERSION = (0, 6, 0)
|
||||
VERSION = (0, 6, 1)
|
||||
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
|
||||
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))
|
||||
|
|
|
|||
Loading…
Reference in a new issue