diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2007-12-04 22:18:38 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2007-12-04 22:18:38 +0000 |
| commit | 48ba374fde6ee32b601f75f285a303b5f6b73594 (patch) | |
| tree | 19c9d52537d5b8a46abc59cfc2b126829937833f /python | |
| parent | a8e232a41365a573fd047ea702dd125130bd057a (diff) | |
| download | qpid-python-48ba374fde6ee32b601f75f285a303b5f6b73594.tar.gz | |
removed warnings on duplicate constants, the issue will go away with 0-10 final
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@601112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
| -rw-r--r-- | python/qpid/spec.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/qpid/spec.py b/python/qpid/spec.py index 537ced113b..623b2e9e9f 100644 --- a/python/qpid/spec.py +++ b/python/qpid/spec.py @@ -372,7 +372,8 @@ def load(specfile, *errata): try: spec.constants.add(const) except ValueError, e: - print "Warning:", e + pass + #print "Warning:", e # domains are typedefs structs = [] |
