forked from distok/cutthecord
customversion: ditch microseconds
This commit is contained in:
parent
5d02aba5d4
commit
9fd72d479e
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ for arg in range(2, len(sys.argv)):
|
|||
customtext += " {},".format(sys.argv[arg])
|
||||
customtext = customtext.strip(",")
|
||||
|
||||
timestamp = str(datetime.datetime.utcnow()) + " UTC"
|
||||
timestamp = str(datetime.datetime.utcnow()).split('.')[0] + " UTC"
|
||||
|
||||
customtext += ", built on {}@{} at {}".format(os.getlogin(),
|
||||
socket.gethostname(),
|
||||
|
|
Loading…
Reference in a new issue