summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrob <robert@onepagego.com>2019-02-28 18:47:58 -0700
committerrob <robert@onepagego.com>2019-03-06 20:39:55 -0700
commitf538f55ea3e3e8a62c7134b582eb5e00e8eb69f8 (patch)
tree8607c94009773ecb5dc69e84256724a957b3bf46
parent59929df445c8b198bf055ee0fa10fc49466c1d91 (diff)
comment spacing
-rw-r--r--pywal/wallpaper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py
index 32573df..e711713 100644
--- a/pywal/wallpaper.py
+++ b/pywal/wallpaper.py
@@ -111,12 +111,12 @@ def set_mac_wallpaper(img):
db_path = os.path.join(HOME, db_file)
img_dir, _ = os.path.split(img)
- #Clear the existing picture data and write the image paths
+ # Clear the existing picture data and write the image paths
sql = "delete from data; "
sql += "insert into data values(\"%s\"); " % img_dir
sql += "insert into data values(\"%s\"); " % img
- #Set all monitors/workspaces to the selected image
+ # Set all monitors/workspaces to the selected image
sql += "update preferences set data_id=2 where key=1 or key=2 or key=3; "
sql += "update preferences set data_id=1 where key=10 or key=20 or key=30;"