(func)
| 2913 | |
| 2914 | |
| 2915 | def _no_encode(func): |
| 2916 | def wrapper(key, val): |
| 2917 | if key == 'filename': |
| 2918 | return u'{0}={1}'.format(key, val) |
| 2919 | else: |
| 2920 | return func(key, val) |
| 2921 | |
| 2922 | return wrapper |
| 2923 | |
| 2924 | |
| 2925 | class ApiException(Exception): |
no outgoing calls
no test coverage detected
searching dependent graphs…