diff options
Diffstat (limited to 'robotframework-onap/eteutils/UUID.py')
-rw-r--r-- | robotframework-onap/eteutils/UUID.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/robotframework-onap/eteutils/UUID.py b/robotframework-onap/eteutils/UUID.py index 35c26a7..1500076 100644 --- a/robotframework-onap/eteutils/UUID.py +++ b/robotframework-onap/eteutils/UUID.py @@ -12,4 +12,4 @@ class UUID: def generate_MilliTimestamp_UUID(self): """generate a millisecond timestamp uuid""" then = datetime.datetime.now() - return int(time.mktime(then.timetuple())*1e3 + then.microsecond/1e3)
\ No newline at end of file + return int(time.mktime(then.timetuple())*1e3 + then.microsecond/1e3) |