Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sébastien DA ROCHA
sakia
Commits
8b0ce409
Commit
8b0ce409
authored
7 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
set locale
parent
996e1c81
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sakia/main.py
+2
-0
2 additions, 0 deletions
src/sakia/main.py
tests/conftest.py
+2
-0
2 additions, 0 deletions
tests/conftest.py
with
4 additions
and
0 deletions
src/sakia/main.py
+
2
−
0
View file @
8b0ce409
import
locale
import
asyncio
import
asyncio
import
logging
import
logging
import
signal
import
signal
...
@@ -104,6 +105,7 @@ def exception_message(log_lines, exc_info):
...
@@ -104,6 +105,7 @@ def exception_message(log_lines, exc_info):
def
main
():
def
main
():
# activate ctrl-c interrupt
# activate ctrl-c interrupt
locale
.
setlocale
(
locale
.
LC_ALL
,
'
C.UTF-8
'
)
signal
.
signal
(
signal
.
SIGINT
,
signal
.
SIG_DFL
)
signal
.
signal
(
signal
.
SIGINT
,
signal
.
SIG_DFL
)
sakia
=
QApplication
(
sys
.
argv
)
sakia
=
QApplication
(
sys
.
argv
)
...
...
This diff is collapsed.
Click to expand it.
tests/conftest.py
+
2
−
0
View file @
8b0ce409
...
@@ -5,6 +5,7 @@ import sqlite3
...
@@ -5,6 +5,7 @@ import sqlite3
import
mirage
import
mirage
import
sys
import
sys
import
os
import
os
import
locale
sys
.
path
.
append
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
..
'
,
'
src
'
)))
sys
.
path
.
append
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
..
'
,
'
src
'
)))
...
@@ -20,6 +21,7 @@ from sakia.services import DocumentsService
...
@@ -20,6 +21,7 @@ from sakia.services import DocumentsService
_application_
=
[]
_application_
=
[]
locale
.
setlocale
(
locale
.
LC_ALL
,
'
C.UTF-8
'
)
@pytest.yield_fixture
@pytest.yield_fixture
def
event_loop
():
def
event_loop
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment