Skip to content

Commit

Permalink
Fixes #233
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui authored Dec 2, 2016
1 parent f1edfd5 commit 564fbb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,12 +494,12 @@ def install(fix_only, custom_path):
svgtopng.convert_svg2png(
fname, output_icon)
mchown(output_icon)
if "symlinks" in icon.keys():
for symlink_icon in icon["symlinks"]:
symlink_icon = icon_path + symlink_icon
symlink_file(output_icon, symlink_icon)
except Exception as e:
print(e)
if "symlinks" in icon.keys():
for symlink_icon in icon["symlinks"]:
symlink_icon = icon_path + symlink_icon
symlink_file(output_icon, symlink_icon)
cnt += 1
if app_name not in fixed_apps:
fixed_apps.append(app_name)
Expand Down

0 comments on commit 564fbb6

Please sign in to comment.