File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -360,19 +360,19 @@ def comet_on_windows_path(browser_type=None):
360360 for item in map (
361361 os .environ .get ,
362362 (
363+ "LOCALAPPDATA" ,
363364 "PROGRAMFILES" ,
364365 "PROGRAMFILES(X86)" ,
365- "LOCALAPPDATA" ,
366366 "PROGRAMW6432" ,
367367 ),
368368 ):
369369 for subitem in (
370- "Perplexity/Comet/Application"
370+ "Perplexity/Comet/Application" ,
371371 "Comet/Application" ,
372372 "Programs/Comet" ,
373373 ):
374374 try :
375- candidates .append (os .sep .join ((item , subitem , "Comet .exe" )))
375+ candidates .append (os .sep .join ((item , subitem , "comet .exe" )))
376376 except TypeError :
377377 pass
378378 for candidate in candidates :
@@ -390,19 +390,19 @@ def atlas_on_windows_path(browser_type=None):
390390 for item in map (
391391 os .environ .get ,
392392 (
393+ "LOCALAPPDATA" ,
393394 "PROGRAMFILES" ,
394395 "PROGRAMFILES(X86)" ,
395- "LOCALAPPDATA" ,
396396 "PROGRAMW6432" ,
397397 ),
398398 ):
399399 for subitem in (
400- "OpenAI/Atlas/Application"
400+ "OpenAI/Atlas/Application" ,
401401 "Atlas/Application" ,
402402 "Programs/Atlas" ,
403403 ):
404404 try :
405- candidates .append (os .sep .join ((item , subitem , "Atlas .exe" )))
405+ candidates .append (os .sep .join ((item , subitem , "atlas .exe" )))
406406 except TypeError :
407407 pass
408408 for candidate in candidates :
You can’t perform that action at this time.
0 commit comments