This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 def escape(text): | |
26 """ | |
27 Used by the gettext.js template to escape translated strings | |
28 so they don't break the script. | |
29 """ | |
30 t = text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nhandled Error | |
Traceback (most recent call last): | |
File "/usr/local/lib/python2.7/dist-packages/twisted/internet/base.py", line 417, in fireEvent | |
DeferredList(beforeResults).addCallback(self._continueFiring) | |
File "/usr/local/lib/python2.7/dist-packages/twisted/internet/defer.py", line 317, in addCallback | |
callbackKeywords=kw) | |
File "/usr/local/lib/python2.7/dist-packages/twisted/internet/defer.py", line 306, in addCallbacks | |
self._runCallbacks() | |
File "/usr/local/lib/python2.7/dist-packages/twisted/internet/defer.py", line 588, in _runCallbacks | |
current.result = callback(current.result, *args, **kw) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"file": 1, | |
"format": 1 | |
}{ | |
"show_progress": true, | |
"show_peers": false, | |
"seeding_time_width": 10, | |
"peers_width": 10, | |
"downloaded_width": 13, | |
"show_remaining": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: test1 test2 | |
@echo "All test!" | |
.PHONY: test-dep | |
test-dep%: | |
@echo "test_dep!" | |
test1: test-dep1 | |
@echo "Test1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gi.repository import Gtk | |
from gi.repository import Pango | |
import sys | |
from gi.repository import Gtk, Gdk | |
columns = ["First Name", | |
"Last Name", | |
"Phone Number"] | |
phonebook = [["Jurg", "Billeter", "555-0123"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tox -e py3 | |
GLOB sdist-make: /home/bro/programmer/deluge/workdirs/develop/setup.py | |
py3 recreate: /home/bro/programmer/deluge/workdirs/develop/.tox/py3 | |
py3 installdeps: pip >= 10, <= 18.1, setuptools >= 40, -rrequirements.txt, -rrequirements-tests.txt | |
py3 inst: /home/bro/programmer/deluge/workdirs/develop/.tox/.tmp/package/1/deluge-2.0.4.dev23.zip | |
ERROR: invocation failed (exit code 1), logfile: /home/bro/programmer/deluge/workdirs/develop/.tox/py3/log/py3-2.log | |
ERROR: actionid: py3 | |
msg: installpkg | |
cmdargs: '/home/bro/programmer/deluge/workdirs/develop/.tox/py3/bin/python -m pip install --ignore-installed --exists-action w /home/bro/programmer/deluge/workdirs/develop/.tox/.tmp/package/1/deluge-2.0.4.dev23.zip' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- log.info('Serving webapidoc at http://%s:%s%s%s', ip, self.port, self.base, self.webapidoc_path) | |
+ log.info( | |
+ 'Serving webapidoc at http://%s:%s%s%s', | |
+ ip, | |
+ self.port, | |
+ self.base, | |
+ self.webapidoc_path, | |
+ ) |
OlderNewer