If at first you don't succeed... setup.py will make you cry

This commit is contained in:
Stephen Boddy 2016-12-12 23:20:02 +01:00
parent 55265cda23
commit c5b1fe4a4a
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class InstallData(install_data):
data_files = []
for css_dir in glob.glob (os.path.join (CSS_DIR, '*')):
srce = os.path.join(css_dir, 'gtk-3.0', 'apps', '*.css')
srce = glob.glob (os.path.join(css_dir, 'gtk-3.0', 'apps', '*.css'))
dest = os.path.join('share', 'terminator', css_dir, 'gtk-3.0', 'apps')
data_files.append((dest, srce))