removed \Tank\ from filepath

This commit is contained in:
Fred Warren 2023-06-28 11:51:52 -07:00
parent 45cd1a29c9
commit 9716a278f2

View File

@ -4,22 +4,22 @@ import csv
import json import json
skip_list = [ skip_list = [
'D:\Tank\Home', 'D:\\home',
'D:\Tank\Shares\hr', 'D:\\shares\\hr',
'D:\Tank\Shares\payroll', 'D:\\shares\\payroll',
'D:\Tank\Shares\cis' 'D:\\shares\\cis'
] ]
share_names = { share_names = {
'D:\Tank\Shares\\acad': ['acad', 'V:\\'], 'D:\\shares\\acad': ['acad', 'V:\\'],
'D:\Tank\Shares\common': ['common', 'X:\\'], 'D:\\shares\\common': ['common', 'X:\\'],
'D:\Tank\Shares\commercial': ['commercial', 'N:\\'], 'D:\\shares\\commercial': ['commercial', 'N:\\'],
'D:\Tank\Shares\scans': ['scans', 'J:\\'], 'D:\\shares\\scans': ['scans', 'J:\\'],
'D:\Tank\Shares\costing': ['costing', 'K:\\'], 'D:\\shares\\costing': ['costing', 'K:\\'],
'D:\Tank\Shares\marketing': ['marketing', 'M:\\'], 'D:\\shares\\marketing': ['marketing', 'M:\\'],
'D:\Tank\Shares\\almar': ['almar', 'O:\\'], 'D:\\shares\\almar': ['almar', 'O:\\'],
'D:\Tank\Shares\production': ['production', 'P:\\'], 'D:\\shares\\production': ['production', 'P:\\'],
'D:\Tank\Shares\\recreation': ['recreation', 'R:\\'], 'D:\\shares\\recreation': ['recreation', 'R:\\'],
'D:\Tank\Shares\photos': ['photos', 'U:\\'], 'D:\\shares\\photos': ['photos', 'U:\\'],
} }
f = open("/tmp/dhcp.csv") f = open("/tmp/dhcp.csv")