From: Moritz Venn Date: Fri, 6 Jun 2008 14:28:17 +0000 (+0000) Subject: fix location attribute name when saving xml X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=06bf75f143b61ba5452c0cd28da317c103074816;p=vuplus_dvbapp-plugin fix location attribute name when saving xml --- diff --git a/autotimer/src/AutoTimer.py b/autotimer/src/AutoTimer.py index c82ba89..be89bbb 100644 --- a/autotimer/src/AutoTimer.py +++ b/autotimer/src/AutoTimer.py @@ -452,7 +452,7 @@ class AutoTimer: # Destination if self.defaultTimer.hasDestination(): - list.extend([' destination="', stringToXML(self.defaultTimer.destination), '"']) + list.extend([' location="', stringToXML(self.defaultTimer.destination), '"']) # Offset if self.defaultTimer.hasOffset(): @@ -542,7 +542,7 @@ class AutoTimer: # Destination if timer.hasDestination(): - list.extend([' destination="', stringToXML(timer.destination), '"']) + list.extend([' location="', stringToXML(timer.destination), '"']) # Offset if timer.hasOffset():