Compare commits
	
		
			No commits in common. "74a275b4235d7062212f556e7bb11bfc6524ae91" and "b5c027a01a37cd467e2800df47f92815d6806e19" have entirely different histories.
		
	
	
		
			74a275b423
			...
			b5c027a01a
		
	
		
					 2 changed files with 6 additions and 6 deletions
				
			
		| 
						 | 
					@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[project]
 | 
					[project]
 | 
				
			||||||
name = "wallman"
 | 
					name = "wallman"
 | 
				
			||||||
version = "1.3.2.2"
 | 
					version = "1.3.2.1"
 | 
				
			||||||
authors = [
 | 
					authors = [
 | 
				
			||||||
    {name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
 | 
					    {name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
 | 
				
			||||||
]
 | 
					]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -166,13 +166,13 @@ class WallpaperLogic(_ConfigLib):
 | 
				
			||||||
    def _check_system_exitcode(self, code) -> bool:
 | 
					    def _check_system_exitcode(self, code) -> bool:
 | 
				
			||||||
        if code != 0:
 | 
					        if code != 0:
 | 
				
			||||||
            try:
 | 
					            try:
 | 
				
			||||||
                self._set_fallback_wallpaper()
 | 
					                self.set_fallback_wallpaper()
 | 
				
			||||||
                logger.error("The wallpaper attempted to be set has not been found, the fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
					                logger.error(f"The wallpaper {self.wallpaper_list[time_range]} has not been found, the fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
				
			||||||
                print("ERROR: The wallpaper attempted to be set has not been found, the fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
					                print(f"ERROR: The wallpaper {self.wallpaper_list[time_range]} has not been found, the fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
				
			||||||
                return False
 | 
					                return False
 | 
				
			||||||
            except ConfigError:
 | 
					            except ConfigError:
 | 
				
			||||||
                logger.error("The wallpaper attempted to be set has not been found and no fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
					                logger.error(f"The wallpaper {self.wallpaper_list[time_range]} has not been found and no fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
				
			||||||
                print("ERROR: The wallpaper attempted to be set has not been found and no fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
					                print(f"ERROR: The wallpaper {self.wallpaper_list[time_range]} has not been found and no fallback wallpaper has been set. Future wallpapers will still attempted to be set.")
 | 
				
			||||||
                return False
 | 
					                return False
 | 
				
			||||||
        else:
 | 
					        else:
 | 
				
			||||||
            return True
 | 
					            return True
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue