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
5ac00a55
Commit
5ac00a55
authored
Mar 29, 2012
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify using new code
parent
ab915237
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
trans/management/commands/updategit.py
trans/management/commands/updategit.py
+3
-3
No files found.
trans/management/commands/updategit.py
View file @
5ac00a55
from
django.core.management.base
import
BaseCommand
,
CommandError
from
trans.models
import
SubProject
from
trans.models
import
SubProject
,
Project
from
optparse
import
make_option
class
Command
(
BaseCommand
):
...
...
@@ -25,5 +25,5 @@ class Command(BaseCommand):
s
.
do_update
()
else
:
for
s
in
SubProject
.
objects
.
filter
(
project__slug
=
parts
[
0
]):
s
.
do_update
()
p
=
Project
.
objects
.
get
(
slug
=
parts
[
0
])
p
.
do_update
()
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