mirror of
				https://github.com/noDRM/DeDRM_tools.git
				synced 2025-10-23 23:07:47 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			808 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			808 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
 | |
| #@@CALIBRE_COMPAT_CODE_START@@
 | |
| import sys, os
 | |
| 
 | |
| # Explicitly allow importing everything ...
 | |
| if os.path.dirname(os.path.dirname(os.path.abspath(__file__))) not in sys.path:
 | |
|     sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 | |
| if os.path.dirname(os.path.abspath(__file__)) not in sys.path:
 | |
|     sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
 | |
| 
 | |
| # Bugfix for Calibre < 5:
 | |
| if "calibre" in sys.modules and sys.version_info[0] == 2:
 | |
|     from calibre.utils.config import config_dir
 | |
|     if os.path.join(config_dir, "plugins", "DeDRM.zip") not in sys.path:
 | |
|         sys.path.insert(0, os.path.join(config_dir, "plugins", "DeDRM.zip"))
 | |
| 
 | |
| # Explicitly set the package identifier so we are allowed to import stuff ...
 | |
| #__package__ = "DeDRM_plugin"
 | |
| 
 | |
| #@@CALIBRE_COMPAT_CODE_END@@
 | 
