Message ID | 20180722092710.17521-2-jiyin@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/6] pynfs: python3 support plan: print -> print() | expand |
diff --git a/nfs4.1/nfs4commoncode.py b/nfs4.1/nfs4commoncode.py index cadd237..3c9c811 100644 --- a/nfs4.1/nfs4commoncode.py +++ b/nfs4.1/nfs4commoncode.py @@ -190,8 +190,8 @@ class %(CompoundState)s(object): ''' # Create normal code -exec code_str % _d +exec(code_str % _d) # Create callback code -exec code_str % _cb_d +exec(code_str % _cb_d)