mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-25 17:32:16 +00:00
Print statements it is...
This commit is contained in:
@@ -28,6 +28,7 @@ def get_time_format():
|
|||||||
# If system is 12hr FIXME Hack on the CI...
|
# If system is 12hr FIXME Hack on the CI...
|
||||||
if timezone.now().strftime("%p") or os.environ.get('CI', False):
|
if timezone.now().strftime("%p") or os.environ.get('CI', False):
|
||||||
time_format = "%I:%M %p"
|
time_format = "%I:%M %p"
|
||||||
|
print(time_format)
|
||||||
return time_format
|
return time_format
|
||||||
|
|
||||||
|
|
||||||
@@ -157,6 +158,7 @@ class DateTimePicker(Region):
|
|||||||
|
|
||||||
date = value.date().strftime("%d%m%Y")
|
date = value.date().strftime("%d%m%Y")
|
||||||
time = value.time().strftime(get_time_format())
|
time = value.time().strftime(get_time_format())
|
||||||
|
print(time)
|
||||||
|
|
||||||
self.root.send_keys(date)
|
self.root.send_keys(date)
|
||||||
self.root.send_keys(Keys.TAB)
|
self.root.send_keys(Keys.TAB)
|
||||||
|
|||||||
Reference in New Issue
Block a user