Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
c5b55b2d
Commit
c5b55b2d
authored
Feb 18, 2016
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
dc24e43b
9ce5bada
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
.github/ISSUE_TEMPLATE.md
.github/ISSUE_TEMPLATE.md
+13
-0
weblate/trans/management/commands/list_versions.py
weblate/trans/management/commands/list_versions.py
+7
-0
No files found.
.github/ISSUE_TEMPLATE.md
0 → 100644
View file @
c5b55b2d
### Steps to reproduce
1.
2.
3.
### Expected behaviour
Tell us what should happen
### Actual behaviour
Tell us what happens instead
### Server configuration
Please paste here output of ./manage.py list_versions
weblate/trans/management/commands/list_versions.py
View file @
c5b55b2d
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#
#
from
django.core.management.base
import
BaseCommand
from
django.core.management.base
import
BaseCommand
from
django
import
db
from
weblate
import
get_versions_string
from
weblate
import
get_versions_string
...
@@ -30,3 +31,9 @@ class Command(BaseCommand):
...
@@ -30,3 +31,9 @@ class Command(BaseCommand):
Prints versions of dependencies.
Prints versions of dependencies.
'''
'''
self
.
stdout
.
write
(
get_versions_string
())
self
.
stdout
.
write
(
get_versions_string
())
self
.
stdout
.
write
(
' * Database backends: '
+
', '
.
join
(
[
conn
[
'ENGINE'
]
for
conn
in
db
.
connections
.
databases
.
values
()]
)
)
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