From 691453950ba0322c86da3e218328b19ab3a050f5 Mon Sep 17 00:00:00 2001 From: Jan Oliver Oelerich Date: Wed, 20 Jan 2016 09:11:30 +0100 Subject: [PATCH] fixed indentation --- i3pystatus/sge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/sge.py b/i3pystatus/sge.py index 989558f..5ffa3c4 100644 --- a/i3pystatus/sge.py +++ b/i3pystatus/sge.py @@ -31,7 +31,7 @@ class SGETracker(IntervalModule): shell=True) root = etree.fromstring(xml) job_dict = {'qw': 0, 'Eqw': 0, 'r': 0} - + for j in root.xpath('//job_info/job_info/job_list'): job_dict[j.find("state").text] += 1