summaryrefslogtreecommitdiff
path: root/plac/doc/example7.py
diff options
context:
space:
mode:
Diffstat (limited to 'plac/doc/example7.py')
-rw-r--r--plac/doc/example7.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plac/doc/example7.py b/plac/doc/example7.py
index 541c4ac..475799d 100644
--- a/plac/doc/example7.py
+++ b/plac/doc/example7.py
@@ -1,11 +1,11 @@
# example7.py
-
from datetime import datetime
def main(dsn, *scripts):
"Run the given scripts on the database"
for script in scripts:
print('executing %s' % script)
+ # ...
if __name__ == '__main__':
import plac; plac.call(main)