diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-08-24 10:53:30 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-08-24 10:53:30 -0400 | 
| commit | 7b2129db24c58ec6fe4eedb8a57a2c5d64a39a7f (patch) | |
| tree | 760e4ee9dd5bf989632c6bf55c3d0408645e1505 | |
| parent | 31ae68d57fd2e80b774a5140b18b221f437ffce0 (diff) | |
| download | verhawk-7b2129db24c58ec6fe4eedb8a57a2c5d64a39a7f.tar.gz | |
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 | 
