diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-24 13:32:34 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-24 13:32:34 -0400 | 
| commit | ab8dcebc57c12448977d451af57a30d50b7b6298 (patch) | |
| tree | 760e4ee9dd5bf989632c6bf55c3d0408645e1505 | |
| parent | 31ae68d57fd2e80b774a5140b18b221f437ffce0 (diff) | |
| parent | 7b2129db24c58ec6fe4eedb8a57a2c5d64a39a7f (diff) | |
| download | verhawk-ab8dcebc57c12448977d451af57a30d50b7b6298.tar.gz | |
Merge pull request #1 from jhunkeler/python2-compat
Add missing import of "print_function"
| -rw-r--r-- | verhawk/cli/verhawk.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/verhawk/cli/verhawk.py b/verhawk/cli/verhawk.py index bf69dab..8286e96 100644 --- a/verhawk/cli/verhawk.py +++ b/verhawk/cli/verhawk.py @@ -1,3 +1,5 @@ +from __future__ import print_function +  import argparse  import importlib  import os | 
