diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-12-01 17:30:31 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-12-01 18:55:23 -0500 |
commit | 00d5eaafd13338bb2f3cb78a16b8f10f11ddeb01 (patch) | |
tree | dc1e2b22f183d6553500eb82c464b044fcc0dd02 /src | |
parent | 644d7e76104dc17241c5a50b4b006f6fa9bf052f (diff) |
python: adjust imports, indentation, unused variables following pylint advice
Diffstat (limited to 'src')
-rwxr-xr-x | src/journal-remote/log-generator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal-remote/log-generator.py b/src/journal-remote/log-generator.py index 24874e960c..7b434b334e 100755 --- a/src/journal-remote/log-generator.py +++ b/src/journal-remote/log-generator.py @@ -29,7 +29,7 @@ _SOURCE_REALTIME_TIMESTAMP={source_realtime_ts} DATA={data} """ -m = 0x198603b12d7 +m = 0x198603b12d7 realtime_ts = 1404101101501873 monotonic_ts = 1753961140951 source_realtime_ts = 1404101101483516 @@ -71,5 +71,5 @@ for i in range(OPTIONS.n): print('.', file=sys.stderr, end='', flush=True) if OPTIONS.dots: - print(file=sys.stderr) + print(file=sys.stderr) print('Wrote {} bytes'.format(bytes), file=sys.stderr) |