blob: cc504d667af94610568c8d1941d40af9137cd2e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- a/mugshot/MugshotWindow.py 2018-08-08 11:22:42.000000000 +0200
+++ b/mugshot/MugshotWindow.py 2018-08-15 22:48:39.998699923 +0200
@@ -256,10 +256,11 @@
if os.path.isfile(face):
try:
- if os.path.samefile(image, face):
- self.updated_image = face
- else:
- self.updated_image = None
+ if os.path.exists(image):
+ if os.path.samefile(image, face):
+ self.updated_image = face
+ else:
+ self.updated_image = None
except FileNotFoundError:
self.updated_image = None
self.set_user_image(face)
|