We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6987e88 commit 62be3e5Copy full SHA for 62be3e5
1 file changed
jenkins_cli/cli.py
@@ -1,6 +1,6 @@
1
from __future__ import print_function
2
import os
3
-from time import time
+from time import time, sleep
4
import datetime
5
import jenkins
6
import socket
@@ -293,7 +293,7 @@ def console(self, args):
293
if new_line_num > last_line_num:
294
print("\n".join(console_out[last_line_num:]))
295
last_line_num = new_line_num
296
- time.sleep(3)
+ sleep(3)
297
build_info = self.jenkins.get_build_info(job_name, build_number)
298
299
def building(self, args):
0 commit comments