Some distributions have switched to python3 as default and our code breaks because it's python2 specific. Follow the PEP 394 recommendation.
		
			
				
	
	
		
			6 lines
		
	
	
		
			89 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			89 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python2
 | 
						|
 | 
						|
from sugar3.activity import bundlebuilder
 | 
						|
 | 
						|
bundlebuilder.start()
 |