Fixed whitespace errors

This commit is contained in:
Peter Michely 2015-10-08 01:10:44 +02:00
parent 6be5c65c36
commit 10f4798559

View File

@ -346,9 +346,9 @@ def run(cmd, *args, win_id, env, verbose=False):
cmd = os.path.expanduser(cmd) cmd = os.path.expanduser(cmd)
# check if userscript is in absolute path or in $XDG_DATA_DIRS # check if userscript is in absolute path or in $XDG_DATA_DIRS
if not os.path.isabs(cmd) : if not os.path.isabs(cmd):
log.misc.debug("{} is no absoulte path".format(cmd)) log.misc.debug("{} is no absoulte path".format(cmd))
c = os.path.join(standarddir.data(),"userscripts", cmd) c = os.path.join(standarddir.data(), "userscripts", cmd)
if os.path.isfile(c): if os.path.isfile(c):
cmd = c cmd = c