mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			258 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			258 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import os, sys
 | 
						|
 | 
						|
path = os.path.join("@DOCDIR@","sccs-info")
 | 
						|
try: text = file(path).read(-1)
 | 
						|
except IOError,e:
 | 
						|
	if e.errno == 2:
 | 
						|
		sys.stderr.write("error: SCCS info file %r cannot be found\n"%path)
 | 
						|
		sys.exit(1)
 | 
						|
	else: raise
 | 
						|
print text |