8000 Fix scripts so they can work with python3 by ObiWahn · Pull Request #10276 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Fix scripts so they can work with python3 #10276

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 18, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move future import to top
  • Loading branch information
Simran-B authored Oct 25, 2019
commit c6d1c05bb983e9818281fc72f9e06a1a1d49b5dc
2 changes: 1 addition & 1 deletion utils/generateExitCodesFiles.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
import csv, sys, os.path, re
from __future__ import print_function
import csv, sys, os.path, re

# wrap text after x characters
def wrap(string, width=80, ind1=0, ind2=0, prefix=''):
Expand Down
0