Show
Ignore:
Timestamp:
07/08/08 19:51:10 (5 months ago)
Author:
nick
Message:

Reverting r1474

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pyamf/trunk/pyamf/remoting/gateway/__init__.py

    r1477 r1486  
    88""" 
    99 
    10 import platform 
    1110import types 
    1211 
    1312import pyamf 
    1413from pyamf import remoting, logging, util 
    15  
    16 #: Value for the Server response-header that contains  
    17 #: information about the PyAMF and Python version used 
    18 #: by the origin server to handle the request.  
    19 SERVER_NAME = 'PyAMF/%s Python/%s' % ( 
    20     '.'.join(map(lambda x: str(x), pyamf.__version__)), 
    21     platform.python_version() 
    22 ) 
    2314 
    2415fault_alias = pyamf.get_class_alias(remoting.ErrorFault)