Browse Source

Add a hyphen in the cache file name.

Joe Clarke 4 years ago
parent
commit
114cc9b1ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      automation/network/poll_errors.py

+ 1 - 1
automation/network/poll_errors.py

@@ -80,7 +80,7 @@ if __name__ == "__main__":
             )
             sys.exit(1)
 
-    cache_file = CACHE_FILE + args.name + ".dat"
+    cache_file = CACHE_FILE + "_" + args.name + ".dat"
 
     if os.path.exists(cache_file):
         fd = open(cache_file, "r")