Skip to content

Commit d9239df

Browse files
committed
Removed unnecessary df -l switch - closes #10
1 parent 5245c03 commit d9239df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudwatchmon/cli/put_instance_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def add_loadavg_metrics(args, metrics):
365365

366366
def get_disk_info(paths):
367367
df_out = [s.split() for s in
368-
os.popen('/bin/df -k -l -P ' +
368+
os.popen('/bin/df -k -P ' +
369369
' '.join(paths)).read().splitlines()]
370370
disks = []
371371
for line in df_out[1:]:

0 commit comments

Comments
 (0)