|  | @@ -290,7 +290,7 @@ class Preferences(object):
 | 
	
		
			
			| 290 | 290 |  
 | 
	
		
			
			| 291 | 291 |      def parse_encoded_data(self, input_data):
 | 
	
		
			
			| 292 | 292 |          decoded_data = decompress(urlsafe_b64decode(input_data.encode('utf-8')))
 | 
	
		
			
			| 293 |  | -        self.parse_dict({x: y[0] for x,y in parse_qs(unicode(decoded_data)).items()})
 | 
	
		
			
			|  | 293 | +        self.parse_dict({x: y[0] for x, y in parse_qs(unicode(decoded_data)).items()})
 | 
	
		
			
			| 294 | 294 |  
 | 
	
		
			
			| 295 | 295 |      def parse_dict(self, input_data):
 | 
	
		
			
			| 296 | 296 |          for user_setting_name, user_setting in input_data.items():
 |