~mbudde/earcandy/ubuntu

« back to all changes in this revision

Viewing changes to earcandylib/Freedesktop.py

  • Committer: Michael Budde
  • Date: 2009-05-22 15:58:21 UTC
  • Revision ID: mbudde@gmail.com-20090522155821-n31ojn86awszcwyz
Trailing whitespace removed and other minor cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
                items.sort()
82
82
                for item in items:
83
83
                        file_object.write(item[0] + '=' + item[1] + '\n')
84
 
        
 
84
 
85
85
        # turn command into an array
86
86
        def get_exec_array(self):
87
87
                command = []
89
89
                for r in re.finditer(p, self.get("Exec")):
90
90
                        command.append( str(r.group(0)) )
91
91
                return command
92