blob: 4f2b78dc9133d5c19b26f8ed3b5d422df4c752ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- src/icalendar/tools.py
+++ src/icalendar/tools.py
@@ -1,5 +1,6 @@
from string import ascii_letters, digits
import random
+from datetime import datetime
"""
This module contains non-essential tools for iCalendar. Pretty thin so far eh?
@@ -42,9 +43,9 @@
datetime-uniquevalue at host. Like:
20050105T225746Z-HKtJMqUgdO0jDUwm at example.com
"""
- from PropertyValues import vText, vDatetime
+ from icalendar.prop import vText, vDatetime
unique = unique or self.rnd_string()
- return vText('%s-%s@%s' % (vDatetime.today().ical(), unique, host_name))
+ return vText('%s-%s@%s' % (vDatetime(datetime.today()).ical(), unique, host_name))
if __name__ == "__main__":
|