diff options
| author | Scott Gasch <[email protected]> | 2021-08-05 14:56:34 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-08-05 14:56:34 -0700 |
| commit | b843703134a166013518c707fa5a77373f1bf0bf (patch) | |
| tree | edd85dee1f0ca34d7720ff8dc44b7a1b1bcc85a0 /lockfile.py | |
| parent | a08ca309cb5bd7971210a9247a38c9bbe376a6e6 (diff) | |
Adds profanity filter, fixes bugs.
Diffstat (limited to 'lockfile.py')
| -rw-r--r-- | lockfile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lockfile.py b/lockfile.py index 770beaa..34279ba 100644 --- a/lockfile.py +++ b/lockfile.py @@ -123,9 +123,10 @@ class LockFile(object): cmd = self.override_command else: cmd = ' '.join(sys.argv) + print(cmd) contents = LockFileContents( pid = os.getpid(), - cmd, + commandline = cmd, expiration_timestamp = self.expiration_timestamp, ) return json.dumps(contents.__dict__) |
