Skip to content

Commit b05df92

Browse files
author
Ram Rachum
committed
--
1 parent 5a66817 commit b05df92

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

garlicsim_wx/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ def get_all_data_files():
4444
total_data_files += data_files
4545
return total_data_files
4646

47-
g = get_all_data_files()
48-
4947
my_long_description = \
5048
'''\
5149
garlicsim_wx, a wxPython GUI for garlicsim.
@@ -78,7 +76,7 @@ def get_all_data_files():
7876
}
7977
],
8078
'zipfile': 'lib/library.zip',
81-
'data_files': g,
79+
'data_files': get_all_data_files(),
8280
'options': {
8381
'py2exe': {
8482
'dist_dir': 'py2exe_dist',
@@ -87,7 +85,7 @@ def get_all_data_files():
8785
}
8886
}
8987

90-
more_kwargs = py2exe_kwargs if `py2exe` in sys.argv else {}
88+
more_kwargs = py2exe_kwargs if 'py2exe' in sys.argv else {}
9189

9290
setuptools.setup(
9391
name='garlicsim_wx',

0 commit comments

Comments
 (0)