diff --git a/.gitignore b/.gitignore index a14df7b..89a63b8 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,3 @@ dist/* *~ .i3pystatus-* ci-build -.idea/ diff --git a/i3pystatus/sge.py b/i3pystatus/sge.py index 5bb35cf..578a6bd 100644 --- a/i3pystatus/sge.py +++ b/i3pystatus/sge.py @@ -26,8 +26,9 @@ class SGETracker(IntervalModule): color = "#ffffff" def parse_qstat_xml(self): - xml = subprocess.check_output("ssh {0} \"qstat -f -xml\"".format(self.ssh), stderr=subprocess.STDOUT, - shell=True) + xml = subprocess.check_output("ssh {0} \"qstat -f -xml\"".format(self.ssh), + stderr=subprocess.STDOUT, + shell=True) root = etree.fromstring(xml) jobs = root.xpath('//job_info/job_info/job_list')