Mercurial > p > roundup > code
changeset 5936:ed5c19fca083
__future__ import was failing, not first command in file.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 19 Oct 2019 20:19:43 -0400 |
| parents | f18f12d6ce9a |
| children | 5d0873a4de4a |
| files | scripts/schema-dump.py |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/schema-dump.py Sat Oct 19 18:37:32 2019 -0400 +++ b/scripts/schema-dump.py Sat Oct 19 20:19:43 2019 -0400 @@ -10,13 +10,14 @@ [ ] lossless dump/restore cycle [ ] data dump and filtering with preserved """ +from __future__ import print_function + __license__ = "Public Domain" __version__ = "1.0" __authors__ = [ "anatoly techtonik <techtonik@gmail.com>" ] -from __future__ import print_function import os import sys from roundup.anypy import xmlrpc_
