diff --git a/application/features/VNC.py b/application/features/VNC.py index 8d954df..fe28f23 100644 --- a/application/features/VNC.py +++ b/application/features/VNC.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2022 iCtrl Developers +# Copyright (c) 2021-2023 iCtrl Developers # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -78,7 +78,7 @@ def check_5900_open(self): if result == '': # possibly using mac - _, _, stdout, _ = self.exec_command_blocking('netstat -an | grep LISTEN | grep .5900') + _, _, stdout, _ = self.exec_command_blocking('netstat -an | grep LISTEN | grep "\.5900"') result = stdout.readline() return result != ''