Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
dadd074f
Commit
dadd074f
authored
Mar 21, 2015
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use stdin argument instead of input for subprocess; makes it python 3.2 compatible
parent
a69fd101
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
.gitignore
.gitignore
+1
-0
verify_formatting.py
verify_formatting.py
+5
-2
No files found.
.gitignore
View file @
dadd074f
...
...
@@ -18,3 +18,4 @@ profile/profile.tar
cabal.sandbox.config
.tmp1
.tmp2
.tmp3
verify_formatting.py
View file @
dadd074f
...
...
@@ -8,8 +8,11 @@ import subprocess
def
hindent
(
contents
):
with
open
(
".tmp3"
,
"w"
)
as
f
:
f
.
write
(
contents
)
with
open
(
".tmp3"
,
"r"
)
as
f
:
output
=
subprocess
.
check_output
([
"hindent"
,
"--style"
,
"gibiansky"
],
input
=
bytes
(
contents
,
'utf-8'
)
)
stdin
=
f
)
return
output
.
decode
(
'utf-8'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment