Skip to content

Commit

Permalink
JobIDManager.py -> JobUtils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
goerz committed Dec 30, 2011
1 parent 489d64c commit f4c5ed0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LPBS/JobIDManager.py → LPBS/JobUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
############################################################################

""" Manage Job IDs """
""" Utility functions and classes for managing Jobs """

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lqdel
lqstat
LPBS/__init__.py
LPBS/Config.py
LPBS/JobIDManager.py
LPBS/JobUtils.py
LPBS/Notifications.py
LPBS/PBSFile.py
README.markdown
2 changes: 1 addition & 1 deletion lqdel
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import time
from glob import glob
from optparse import OptionParser
from LPBS.Config import get_config, verify_lpbs_home
from LPBS.JobIDManager import send_sig_to_job_id, pid_for_job_id
from LPBS.JobUtils import send_sig_to_job_id, pid_for_job_id



Expand Down
2 changes: 1 addition & 1 deletion lqstat
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import logging
from glob import glob
from optparse import OptionParser
from LPBS.Config import get_config, verify_lpbs_home
from LPBS.JobIDManager import JobInfo
from LPBS.JobUtils import JobInfo


def job_to_be_printed(lock_file, job_list):
Expand Down
2 changes: 1 addition & 1 deletion lqsub
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import signal
import getpass
import time
from optparse import OptionParser
from LPBS.JobIDManager import get_new_job_id, JobInfo
from LPBS.JobUtils import get_new_job_id, JobInfo
from LPBS.Config import get_config, verify_lpbs_home, full_expand
from LPBS.PBSFile import set_options_from_pbs_script
from LPBS.Notifications import Notifier, COND_STRT, COND_STOP, COND_ABRT, \
Expand Down

0 comments on commit f4c5ed0

Please sign in to comment.