Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gajim
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
219
Issues
219
List
Boards
Labels
Milestones
Merge Requests
26
Merge Requests
26
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gajim
gajim
Commits
3de7d8f6
Commit
3de7d8f6
authored
Oct 10, 2019
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Groupchat: Show subject timestamp in preferred format
%c uses the preferred format on the current system
parent
c703dcf3
Pipeline
#4366
passed with stages
in 2 minutes and 49 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gajim/groupchat_control.py
gajim/groupchat_control.py
+1
-2
No files found.
gajim/groupchat_control.py
View file @
3de7d8f6
...
@@ -1032,8 +1032,7 @@ class GroupchatControl(ChatControlBase):
...
@@ -1032,8 +1032,7 @@ class GroupchatControl(ChatControlBase):
'nick'
:
event
.
nickname
,
'subject'
:
event
.
subject
}
'nick'
:
event
.
nickname
,
'subject'
:
event
.
subject
}
if
event
.
user_timestamp
:
if
event
.
user_timestamp
:
date
=
time
.
strftime
(
'
%
d-
%
m-
%
Y
%
H:
%
M:
%
S'
,
date
=
time
.
strftime
(
'
%
c'
,
time
.
localtime
(
event
.
user_timestamp
))
time
.
localtime
(
event
.
user_timestamp
))
text
=
'
%
s -
%
s'
%
(
text
,
date
)
text
=
'
%
s -
%
s'
%
(
text
,
date
)
if
(
app
.
config
.
get
(
'show_subject_on_join'
)
or
if
(
app
.
config
.
get
(
'show_subject_on_join'
)
or
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment