Skip to content

Commit

Permalink
Bug fix sacct
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Collins committed Sep 15, 2020
1 parent 3cf82bc commit 0928e13
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Expand Up @@ -2,6 +2,12 @@
History
=======

0.4.5 (2020-09-15)
------------------

* Bug fix on sacct poller


0.4.4 (2020-09-14)
------------------

Expand Down
2 changes: 1 addition & 1 deletion viewclust/_version.py
@@ -1 +1 @@
__version__ = '0.4.4'
__version__ = '0.4.5'
2 changes: 1 addition & 1 deletion viewclust/slurm/sacct_jobs.py
Expand Up @@ -45,7 +45,7 @@ def sacct_jobs(account_query, d_from, d_to='', debugging=False,
base_cmd = ['sacct', '-aX', '-A', account_query, '-S', d_from, '-E', d_to,
'-p', '--delimiter', '"|"', '-n', '--units=M']
else:
base_cmd = ['sacct', '-aX', -S', d_from, '-E', d_to,
base_cmd = ['sacct', '-aX', '-S', d_from, '-E', d_to,
'-p', '--delimiter', '"|"', '-n', '--units=M']

base_cmd.append('-o')
Expand Down

0 comments on commit 0928e13

Please sign in to comment.