diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-12-02 08:48:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 08:48:37 +0100 |
commit | cd66af227416eb7b9f150b92abff4e4a3e92253b (patch) | |
tree | 4f28cd81f19beb8a16aff8dcb93fc7c5dc8216f1 /src | |
parent | cd05bb8bafa808f0a40feaaa0e8cc564c0f203a7 (diff) | |
parent | cda39975dc08a613cd7aad74217cc272aff5cc3b (diff) |
Merge pull request #4797 from keszybz/pylint
Python cleanups based on 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) |