de-indenting the comments

This commit is contained in:
Fernando Vásquez 2017-08-06 07:43:41 -06:00 committed by GitHub
parent 524b52dee5
commit 5b3806d0a8

View File

@ -29,9 +29,9 @@ def gtk():
if gtk2_file.is_file(): if gtk2_file.is_file():
shutil.copy(gtk2_file, theme_path / "gtk-2.0") shutil.copy(gtk2_file, theme_path / "gtk-2.0")
# Here we call a Python 2 script to reload the GTK themes. # Here we call a Python 2 script to reload the GTK themes.
# This is done because the Python 3 GTK/Gdk libraries don't # This is done because the Python 3 GTK/Gdk libraries don't
# provide a way of doing this. # provide a way of doing this.
if shutil.which("python2"): if shutil.which("python2"):
util.disown(["python2", MODULE_DIR / "scripts" / "gtk_reload.py"]) util.disown(["python2", MODULE_DIR / "scripts" / "gtk_reload.py"])