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
e2095888
Commit
e2095888
authored
Mar 07, 2016
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing unicode literals usage
Fixes rb#580 Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
969cec0a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
0 deletions
+9
-0
weblate/trans/models/dictionary.py
weblate/trans/models/dictionary.py
+2
-0
weblate/trans/models/project.py
weblate/trans/models/project.py
+2
-0
weblate/trans/models/translation.py
weblate/trans/models/translation.py
+2
-0
weblate/trans/models/unit.py
weblate/trans/models/unit.py
+2
-0
weblate/trans/models/unitdata.py
weblate/trans/models/unitdata.py
+1
-0
No files found.
weblate/trans/models/dictionary.py
View file @
e2095888
...
...
@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from
__future__
import
unicode_literals
import
sys
from
django.core.urlresolvers
import
reverse
...
...
weblate/trans/models/project.py
View file @
e2095888
...
...
@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from
__future__
import
unicode_literals
import
os
import
os.path
...
...
weblate/trans/models/translation.py
View file @
e2095888
...
...
@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from
__future__
import
unicode_literals
import
os
import
codecs
from
datetime
import
timedelta
...
...
weblate/trans/models/unit.py
View file @
e2095888
...
...
@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from
__future__
import
unicode_literals
import
functools
import
traceback
import
multiprocessing
...
...
weblate/trans/models/unitdata.py
View file @
e2095888
...
...
@@ -19,6 +19,7 @@
#
from
__future__
import
unicode_literals
from
django.db
import
models
from
django.db.models
import
Count
from
django.contrib.auth.models
import
User
...
...
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