Clean the key so that it only has unix style line endings (\\n)
(key)
| 103 | |
| 104 | |
| 105 | def clean_key(key): |
| 106 | """ |
| 107 | Clean the key so that it only has unix style line endings (\\n) |
| 108 | """ |
| 109 | return "\n".join(key.strip().splitlines()) |
| 110 | |
| 111 | |
| 112 | def read_dropfile(cachedir): |
no outgoing calls
no test coverage detected