Changeset 7841 for branches/gajim_0.11/src/conversation_textview.py
- Timestamp:
- 01/15/07 19:51:27 (23 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11/src/conversation_textview.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/src/conversation_textview.py
r7829 r7841 689 689 current_print_time = gajim.config.get('print_time') 690 690 if current_print_time == 'always' and kind != 'info': 691 timestamp_str = gajim.config.get('time_stamp') 692 timestamp_str = helpers.from_one_line(timestamp_str) 691 timestamp_str = self.get_time_to_show(tim) 693 692 timestamp = time.strftime(timestamp_str, tim) 694 693 buffer.insert_with_tags_by_name(end_iter, timestamp, … … 758 757 if day_str: 759 758 format += day_str + ' ' 760 format += '%X' 759 timestamp_str = gajim.config.get('time_stamp') 760 timestamp_str = helpers.from_one_line(timestamp_str) 761 format += timestamp_str 761 762 tim_format = time.strftime(format, tim) 762 763 if locale.getpreferredencoding() != 'KOI8-R':
