Skip to content

Commit

Permalink
Adding Update for Windows 10 to the stufy metrics database so we can …
Browse files Browse the repository at this point in the history
…grab metrics from both OS versions
  • Loading branch information
Dale Brennan committed Feb 11, 2024
1 parent 6e31dcc commit c67a0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collect_system_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def collect_em_11_metrics():
with DatabaseManager() as db:
df = db.read_database_table('em_11_vulnerability_patching')

df = df[(df['Software'].str.contains('Update for Windows 11', na=False))]
df = df[(df['Software'].str.contains('Update for Windows 11|Update for Windows 10', na=False))]

with DatabaseManager(database_name='study-metrics.db') as db:
db.add_new_rows('em_11_vulnerability_patching', df, list(df.keys()))
Expand Down

0 comments on commit c67a0eb

Please sign in to comment.