Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: sitescripts/management/bin/installChanges.py

Issue 29756646: Noissue - Adapt best practices for trailing commas (abpssembly) (Closed)
Left Patch Set: Created April 19, 2018, 12:49 p.m.
Right Patch Set: Re-run script on Python 2, added flake8-commas extension Created April 19, 2018, 2:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « sitescripts/management/bin/generateNotifications.py ('k') | sitescripts/notifications/test/notification.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 # This file is part of the Adblock Plus web scripts, 1 # This file is part of the Adblock Plus web scripts,
2 # Copyright (C) 2006-present eyeo GmbH 2 # Copyright (C) 2006-present eyeo GmbH
3 # 3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as 5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 6 # published by the Free Software Foundation.
7 # 7 #
8 # Adblock Plus is distributed in the hope that it will be useful, 8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 if not setting in ('source', 'target', 'user', 'group', 'ignore', 'posts ync'): 106 if not setting in ('source', 'target', 'user', 'group', 'ignore', 'posts ync'):
107 continue 107 continue
108 108
109 if not name in result: 109 if not name in result:
110 result[name] = { 110 result[name] = {
111 'source': None, 111 'source': None,
112 'target': None, 112 'target': None,
113 'user': None, 113 'user': None,
114 'group': None, 114 'group': None,
115 'postsync': None, 115 'postsync': None,
116 'ignore': [] 116 'ignore': [],
117 } 117 }
118 if isinstance(result[name][setting], list): 118 if isinstance(result[name][setting], list):
119 result[name][setting] = get_config().get('filesync', option).split(' ') 119 result[name][setting] = get_config().get('filesync', option).split(' ')
120 else: 120 else:
121 result[name][setting] = get_config().get('filesync', option) 121 result[name][setting] = get_config().get('filesync', option)
122 return result 122 return result
123 123
124 124
125 if __name__ == '__main__': 125 if __name__ == '__main__':
126 setupStderr() 126 setupStderr()
127 127
128 syncState = ConfigParser.SafeConfigParser() 128 syncState = ConfigParser.SafeConfigParser()
129 syncStateFile = get_config().get('filesync', 'syncData') 129 syncStateFile = get_config().get('filesync', 'syncData')
130 if os.path.exists(syncStateFile): 130 if os.path.exists(syncStateFile):
131 syncState.read(syncStateFile) 131 syncState.read(syncStateFile)
132 132
133 settings = readSyncSettings() 133 settings = readSyncSettings()
134 for name, value in settings.iteritems(): 134 for name, value in settings.iteritems():
135 syncFiles(name, value, syncState) 135 syncFiles(name, value, syncState)
136 136
137 file = open(syncStateFile, 'wb') 137 file = open(syncStateFile, 'wb')
138 syncState.write(file) 138 syncState.write(file)
LEFTRIGHT

Powered by Google App Engine
This is Rietveld