Skip to content

Commit

Permalink
Fix issue with source release and bump to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RedFantom committed Jan 27, 2018
1 parent e1d5c1d commit 711f5b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def read(fname):
name='ttkthemes',
packages=['ttkthemes'],
package_data={"ttkthemes": ["themes/*", "tkimg/*"]},
version='2.0.1',
version='2.0.2',
description='A group of themes for the ttk extensions of Tkinter with a Tkinter.Tk wrapper',
author='The ttkthemes authors',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion ttkthemes/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ def get_tkimg_directory():
tkimg = os.path.join(os.path.dirname(__file__), "tkimg")
if not os.path.exists(os.path.join(tkimg, "pkgIndex.tcl")):
prefix = sys.platform if sys.platform not in platforms else platforms[sys.platform]
arch = architecture()[0]
arch = architecture()[0][:2]
tkimg = os.path.join(tkimg, "{}{}".format(prefix, arch))
return tkimg

0 comments on commit 711f5b4

Please sign in to comment.